Automation Strategy

  • What tests are best to automate?

    Repetitive tests (Regression), critical business paths, tests difficult to perform manually (e.g., precise data verification), and stable features.

  • How do you deal with Flaky Tests?

    Identify the cause (environment, race conditions, locators). Isolate the test. Use explicit waits. Check execution mode (headless vs headed).

  • What is Data Driven Testing?

    A strategy where test scripts read data from external sources (CSV, Excel, Database) instead of using hard-coded values, allowing the same test to run with multiple data sets.