6 comments

  • Khromchenko13 9 hours ago
    How good is it in terms of scalability? Im looking for something that wont crap out when we get to 100s or 1000s of tests
    • papapin777 9 hours ago
      Hmm, I didn’t test this many tests. But you can run all tests in parallel — two at a time — and we should be good. The limitation isn’t the framework; it’s your budget and the tier you have on OpenAI. If you have Tier 2, which allows more requests to the OpenAI API, you could potentially run 1,000 tests in a single run.
  • chosenman 8 hours ago
    So it potentially can outperform/ substitute selenium for frontend testing?
    • papapin777 8 hours ago
      Basically, it’s built on top of Playwright — kind of like Selenium. The pros are that it’s easy to write tests in English and you don’t need to maintain them. The cons are that you spend tokens, so it costs money for every test run.
      • chosenman 8 hours ago
        So, are you saying that I should spend money on every test run?
        • papapin777 8 hours ago
          Unfortunately, yes — you need to spend money for every test run. But you’re paying either way. Let me explain: I work at a big company with a large QA team. People write tests in JS/TS/Python. It takes time to write them, and then more time to maintain them when they break due to UI changes. Our team spends a lot of time fixing flaky and broken tests. Time is money. So leadership has to make a decision: should people spend less time writing and maintaining tests and focus more on quality, even if it means paying for test runs?
    • stark2025 2 hours ago
      Great stuff!
      • snetch 9 hours ago
        Love it. Very easy to setup and start adding e2e tests using prompt.
        • papapin777 9 hours ago
          Thank you! It’s free and open source. Contributions are welcome! I’ll be releasing a new feature soon that will make it even easier.
        • MaxRadio 9 hours ago
          This stuff is pretty helpful, love to test with it!
          • papapin777 9 hours ago
            I have a 5-minute quick start guide on the website. It’s easy to get started — you just need an OpenAI key
        • devafromla 8 hours ago
          Do you support Gemini?