The last couple of weeks I’ve been using Claude AI at work to assist me with testing.
The Devs has accelerated the production of the products I test to the point where I have a lot in the backlog.
I’m thinking with Claude AI, is it possible to create a tool that can test multiple products at once? For example slot games or mini casino games? Then generate the report if they were any issues?
Currently I use Claude to generate a test plan and test cases based on the product. It can execute the tests via automation and I can do the tests that cannot be automated. Lastly I feed it the Jira ticket where it can generate the bug reports. I do it with one slot game at a time.
yes, but i’d parallelize the harness, not one Claude conversation. give each game an isolated browser context, fixed test data or seed, and a small risk model for payouts, state transitions, reconnects, and error handling. run the deterministic checks concurrently, then let Claude summarize only the failed cases.
the report should link each failure to the exact build, starting balance and state, actions, expected result, actual result, console or network errors, and a replay or trace. without a game-specific oracle, “test multiple products” can become fast screenshot generation rather than trustworthy testing.
i’d pilot it on three similar games and measure escaped issues plus review time before scaling the backlog.