Python Selenium:切换选项卡,而无需等待页面加载

发布于 2025-01-21 20:36:54 字数 166 浏览 0 评论 0 原文

我正在尝试更改“浏览器”选项卡,而我正在加载一些JavaScript。当我尝试这样做时,我的程序停在 driver.switch_to.window(x)中 线路并留在那里,直到加载JavaScript。我想知道是否有任何方法不阻止执行。

就像驾驶员很忙,直到完成后才采取行动。

I am trying to change the browser tab while the current tab I am in is loading some javascript. When I try to do that, my program stops in the driver.switch_to.window(x)
line and stays there until the javascript is loaded. I would like to know If there is any way not to block the execution.

It's like the driver it's busy, and will not do the action until it finishes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜夜流光相皎洁 2025-01-28 20:36:54

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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文