Empresa engajada
1. How will you open Browser in Incognito mode. 2. Switching Tabs in selenium 3. How will you execute only the failed testcases after the first run. 4. How to run test cases parallelly.
Sigiloso
1. Using ChromeOptions class we can run the UTA in the incognito tab ChromeOptions op = new ChromeOptions(); op.addArguments("--incognito"); WebDriver driver = new ChromeDriver(op);