Selenium stops when browser is manually interrupted

前端 未结 1 1952
轻奢々
轻奢々 2020-12-07 05:22

When Selenium starts it opens the browser and starts to fill the data, but when the user clicks somewhere in the browser while the selenium is running, then sel

相关标签:
1条回答
  • 2020-12-07 06:11

    When you use Selenium to execute your program/script, Selenium needs the focus on the Browser Client which renders the HTML DOM.

    Now, when the test execution is In Progress if an user manually clicks somewhere withinin the browser, Selenium looses the focus and an exception will be raised.

    0 讨论(0)
提交回复
热议问题