Most teams want the one bundle for their language + framework. Find your combination below, click once, install the archive into your project. All files are self-contained — no account, no extra downloads.
tar built into cmd / PowerShell.
Find your language × framework. Click the ⬇ at the intersection. Each bundle contains just the core client + that adapter. Need everything?
| Framework \ Language | 🐍 Python | ⚙️ JavaScript / TS | ☕ Java | 🟦 C# / .NET | 💎 Ruby |
|---|---|---|---|---|---|
| Playwright | ⬇ 31 KB guide | ⬇ 11 KB guide | ⬇ 8.2 KB guide | ⬇ 5.9 KB guide | — |
| Selenium / WebdriverIO | ⬇ 30 KB guide | ⬇ 11 KB guide | ⬇ 8.2 KB guide | ⬇ 5.9 KB guide | ⬇ 4.9 KB guide |
| Cypress | — | ⬇ 12 KB guide | — | — | — |
| Puppeteer | — | ⬇ 11 KB guide | — | — | — |
| pytest | ⬇ 31 KB guide | — | — | — | — |
| unittest | ⬇ 31 KB guide | — | — | — | — |
| Robot Framework | ⬇ 30 KB guide | — | — | — | — |
| Jest | — | ⬇ 10 KB guide | — | — | — |
| Mocha | — | ⬇ 11 KB guide | — | — | — |
| JUnit 5 | — | — | ⬇ 8.6 KB guide | — | — |
| TestNG | — | — | ⬇ 8.1 KB guide | — | — |
| NUnit | — | — | — | ⬇ 5.7 KB guide | — |
| xUnit | — | — | — | ⬇ 5.8 KB guide | — |
| MSTest | — | — | — | ⬇ 5.7 KB guide | — |
| RSpec | — | — | — | — | ⬇ 5.0 KB guide |
| Minitest | — | — | — | — | ⬇ 4.9 KB guide |
| Vibium · BiDi | ⬇ 30 KB guide | ⬇ 11 KB guide | ⬇ 8.2 KB guide | — | — |
Once you have the tarball, one command gets it into your project. Commands work
identically on macOS, Linux, and Windows. On Windows use PowerShell,
cmd (10 1803+ has tar built in), Git Bash, or WSL.
# Python bundle — core + adapter in one pip install
pip install ./testersai-python-pytest-0.1.0.tar.gz
# JavaScript bundle — two tgzs inside; install both
tar -xzf testersai-javascript-playwright-0.1.0.tar.gz
cd testersai-javascript-playwright-0.1.0
npm install ./testersai-sdk-0.1.0.tgz ./testersai-playwright-0.1.0.tgz
# Java — extract source; build with Maven
tar -xzf testersai-java-junit5-0.1.0.tar.gz
mvn -f testersai-java-junit5-0.1.0/core/pom.xml install
# .NET — extract source; add project references
tar -xzf testersai-csharp-nunit-0.1.0.tar.gz
dotnet add <your.csproj> reference ./testersai-csharp-nunit-0.1.0/Core/TestersAI.Core.csproj
# Ruby — extract; build gem
tar -xzf testersai-ruby-rspec-0.1.0.tar.gz
cd testersai-ruby-rspec-0.1.0/testersai && gem build *.gemspec && gem install *.gem
Full source tree for all 5 languages + all 17 adapters + examples + docs. Useful for forking, auditing, or offline CI mirrors.
sdk_web/
to any webserver path — every archive here is served as a plain static file. No build
step, no runtime. Works on S3, nginx, GitHub Pages, Netlify drop.