Python Selenium:切换选项卡,而无需等待页面加载
我正在尝试更改“浏览器”选项卡,而我正在加载一些JavaScript。当我尝试这样做时,我的程序停在 driver.switch_to.window(x)
中
线路并留在那里,直到加载JavaScript。我想知道是否有任何方法不阻止执行。
就像驾驶员很忙,直到完成后才采取行动。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
no ,您无法使用
driver.switch_to.window(x)
更改浏览器选项卡JavaScript。深度潜水
当您调用
get()
client(即Web浏览器)时, 会将控件返回到WebDriver实例,一旦'docude>'document.docorme.readystate'等于
“完成”
。直到那时,您将无法通过WebDriver执行任何命令。参考文献
中找到一些相关的详细讨论。
No, you can't change the browser tab using
driver.switch_to.window(x)
while in the current tab the page is loading some javascript.Deep Dive
When you invoke
get()
the the client (i.e. the Web Browser) returns back the control to the WebDriver instance once'document.readyState'
equals to"complete"
is achieved. Till then you won't be able to execute any command through the WebDriver.References
You can find a couple of relevant detailed discussions in: