When I execute the file to open the browser, it opens and after it finishes loading the page it automatically closes the browser. Do you know why and what I can do? Thanks!
@RenatoGuedes, that has been behavior of chrome for over a year now. Once the script ends it just closes the browser even if you do not have a .quit() or .close(). There are several ways to deal with this but the way I deal with it is I just put a breakpoint at the end of the script so the browser stays open.
🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle
📚 Live training with a mentor: supersqa.com/bootcamp
When I execute the file to open the browser, it opens and after it finishes loading the page it automatically closes the browser. Do you know why and what I can do? Thanks!
@RenatoGuedes, that has been behavior of chrome for over a year now. Once the script ends it just closes the browser even if you do not have a .quit() or .close(). There are several ways to deal with this but the way I deal with it is I just put a breakpoint at the end of the script so the browser stays open.
@@SuperSQA thanks