assrt.net vs assrt.ai: which one did you mean?

M
Matthew Diakonov
5 min read

Two sites share the assrt name and have nothing to do with each other. One is a subtitle download community that has been around for years. The other is a developer testing tool. Search engines blur them together because of the shared letters, so here is the fast answer, then the part that matters if you actually wanted the testing tool.

Direct answer · verified June 18, 2026

assrt.net is a Chinese-language subtitle community, known as 射手网(伪) ("the pseudo Shooter network"). It hosts hundreds of thousands of subtitle files for films, TV, and anime. It is not a software product and has no connection to this site.

assrt.ai (this site) is a separate, unrelated thing: a free, open-source AI testing tool that generates real Playwright end-to-end tests. If you came for subtitles, you want the first link. If you came for testing, keep reading.

Telling the two apart

The simplest way to know which one you landed on: look at what the site is for. They do not overlap in any way.

assrt.net
Subtitle community
  • 射手网(伪), a Chinese subtitle download hub
  • Subtitles for films, TV, and anime
  • Chinese, English, and bilingual files
  • For viewers and subtitle groups, not developers
assrt.ai
AI testing tool
  • Open-source, MIT-style, free to run
  • Generates real Playwright end-to-end tests
  • Self-healing selectors, visual regression
  • For engineers shipping a web app, not viewers

If subtitles are what you need, stop here and head to assrt.net. The rest of this page is for the people who meant the testing tool.

If you meant the testing tool: what assrt.ai does

assrt.ai exists because writing end-to-end tests is tedious and maintaining them when the UI changes is worse. Most teams either skip testing or sink hours into brittle selectors. Assrt crawls your app, discovers scenarios, and generates real Playwright tests you keep in your own repo. The tests are standard files, not a proprietary format, so there is nothing to be locked into.

How a run actually works

1

npx @m13v/assrt

Install as a CLI or as an MCP server for a coding agent

2

Crawl and discover

The agent walks your app and emits page_discovered events

3

Generate cases

Plain-English #Case blocks become Playwright steps

4

Run in a real browser

Claude Haiku drives Chromium, Firefox, or WebKit

5

Keep the artifacts

Standard Playwright output, a .webm recording, pass or fail per case

The part you can verify: a plan is just #Case blocks

You do not record clicks into an opaque recorder. You write a plan in plain English, where each test is a #Case: block. Every block runs as an independent scenario inside one shared browser session, and an LLM agent (Claude Haiku by default) interprets the steps, drives the page with Playwright, and reports a result. Each run also writes a real .webm recording to disk, so you can watch exactly what the browser did.

plan.md

Run that with npx @m13v/assrt run --url http://localhost:3000 --plan "..." and each #Case comes back pass or fail with a recording attached. The source for all of this is public at github.com/assrt-ai/assrt-mcp, so the behavior described here is checkable, not a marketing claim.

Why developers pick it over the alternatives

The closed tools in this space charge real money and hand you a format you cannot leave. QA Wolf runs around $7.5K a month and is closed-source. Momentic uses proprietary YAML and is Chrome-only. assrt.ai outputs the same standard Playwright code in any of the three browser engines, runs in your own CI, and costs nothing. When you want to walk away, you keep the tests, because they were always just files in your repo.

Wanted the testing tool, not subtitles?

Bring your app and we will generate a real Playwright suite on it live, then hand you the files.

assrt.net and assrt.ai: common questions

What is assrt.net?

assrt.net is a long-running Chinese-language subtitle community, known as 射手网(伪) or 'the pseudo Shooter network.' It hosts hundreds of thousands of subtitle files for films, TV shows, and anime, in Chinese, English, and bilingual formats. It has nothing to do with software testing.

Is assrt.net the same as assrt.ai?

No. They share four letters in the name and nothing else. assrt.net is a subtitle download site. assrt.ai is an open-source AI testing framework that generates Playwright end-to-end tests. Different owners, different purpose, different audience.

I came here looking for subtitles. Where do I go?

The subtitle community lives at assrt.net. This page is on assrt.ai, which is a developer tool. If subtitles are what you want, you are on the wrong site and assrt.net is your destination.

Why does assrt.ai show up when I search for assrt.net?

Search engines match on the shared 'assrt' string, so the two domains bleed into each other's results. That is the entire reason this page exists: to tell you quickly which one you actually want.

What does assrt.ai actually do?

You install it with npx, describe test cases in plain English as #Case blocks, and it runs each one as an independent Playwright scenario in a real browser. It generates standard Playwright code you keep in your own repo, with no proprietary format and no vendor lock-in. It is open-source and free.

Is assrt.ai free and open-source?

Yes. The code lives at github.com/assrt-ai/assrt-mcp and the tests it produces are plain Playwright files you own. There is no closed cloud you are forced to run inside, unlike vendors that charge thousands of dollars a month.

How is assrt.ai different from writing Playwright tests by hand?

By hand you start from a blank file and maintain brittle selectors yourself. assrt.ai crawls your app, proposes scenarios, drives the browser with an LLM, and uses self-healing selectors so small UI changes stop breaking the suite. You still get readable Playwright code at the end.

assrtOpen-source AI testing framework
© 2026 Assrt. MIT License.

How did this page land for you?

React to reveal totals

Comments ()

Leave a comment to see what others are saying.

Public and anonymous. No signup.