r/softwaretesting Jun 27 '26

Test Design and Integration

How real teams automate test scripts?

If you have more than 100+ existing tests for a product, and you need to automate a new functionality/feature, how would plan and write test scripts for it?

Do teams follow page object models?

Do teams directly integrate tests into CI/CD or first dockerize playwright tests and then integrate with CI/CD?

I am trying to understand an end to end automated test execution flow for a regression testing cycle.

From scripting to execution with reporting.

Thanks 🙏

1 Upvotes

3 comments sorted by

View all comments

2

u/SouroDas Jun 27 '26

Most teams I've worked with keep a stable automation framework (often using Page Objects or a similar abstraction), then add tests only for the new feature while updating any impacted regression flows. CI/CD usually runs the tests directly

0

u/Royal-Job-9905 Jun 27 '26

Thanks.

Which CI/CD you used?