如何在 Selenium for Python 中切换到新窗口?
Posted
技术标签:
【中文标题】如何在 Selenium for Python 中切换到新窗口?【英文标题】:How to switch to new window in Selenium for Python? 【发布时间】:2012-05-24 16:21:04 【问题描述】:我正在使用 Python 进行 硒自动化项目。
我遇到了一个问题,即处理多个浏览器窗口。
场景如下。当我单击主页上的链接时,会打开一个新窗口。在新打开的窗口中我无法执行任何操作,因为焦点仍在主页 Web 驱动程序上。
谁能告诉我如何将焦点从背景窗口更改为新打开的窗口?
一个可能的解决方案是driver.switch_to.window()
,但它需要窗口的名称。如何找出窗口的名称?如果这是错误的方法,谁能给出一些代码示例来执行此操作?
【问题讨论】:
【参考方案1】:您可以使用window_handles
和switch_to.window
方法来做到这一点。
在点击链接之前先将窗口句柄存储为
window_before = driver.window_handles[0]
点击链接后将新打开窗口的窗口句柄保存为
window_after = driver.window_handles[1]
然后执行切换到窗口方法移动到新打开的窗口
driver.switch_to.window(window_after)
同样你可以在新旧窗口之间切换。以下是代码示例
import unittest
from selenium import webdriver
class GoogleOrgSearch(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Firefox()
def test_google_search_page(self):
driver = self.driver
driver.get("http://www.cdot.in")
window_before = driver.window_handles[0]
print window_before
driver.find_element_by_xpath("//a[@href='http://www.cdot.in/home.htm']").click()
window_after = driver.window_handles[1]
driver.switch_to.window(window_after)
print window_after
driver.find_element_by_link_text("ATM").click()
driver.switch_to.window(window_before)
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()
【讨论】:
按照您的代码,我在执行window_after = browser.window_handles[1]
时收到IndexError: list index out of range
。怎么了?见:***.com/questions/45354850/…
@LucSpan 我遇到了同样的问题,但是使用 time.sleep(10) 等待其他网页加载解决了这个问题
driver.switch_to_window()
现已折旧。将其替换为driver.switch_to.window()
以消除警告【参考方案2】:
在已经给出的答案之上,要打开一个新标签,可以使用 javascript 命令window.open()
。
例如:
# Opens a new tab
self.driver.execute_script("window.open()")
# Switch to the newly opened tab
self.driver.switch_to.window(self.driver.window_handles[1])
# Navigate to new URL in new tab
self.driver.get("https://google.com")
# Run other commands in the new tab here
然后您可以按如下方式关闭原始选项卡
# Switch to original tab
self.driver.switch_to.window(self.driver.window_handles[0])
# Close original tab
self.driver.close()
# Switch back to newly opened tab, which is now in position 0
self.driver.switch_to.window(self.driver.window_handles[0])
或者关闭新打开的标签
# Close current tab
self.driver.close()
# Switch back to original tab
self.driver.switch_to.window(self.driver.window_handles[0])
希望这会有所帮助。
【讨论】:
switch_to_window 已弃用。使用 switch_to.window【参考方案3】:window_handles
应该为您提供所有打开窗口的引用。
this 是文档中关于切换窗口的内容。
【讨论】:
【参考方案4】:例如。你可以服用
driver.get('https://www.naukri.com/')
既然是当前窗口,我们可以给它命名
main_page = driver.current_window_handle
如果除了当前窗口之外至少有1个窗口弹出,你可以试试这个方法,并通过hit n trial将if条件放入break语句中
for handle in driver.window_handles:
if handle != main_page:
print(handle)
login_page = handle
break
driver.switch_to.window(login_page)
现在,无论您必须申请什么凭据,请提供 登录后。窗口会消失,但你必须来到主页面窗口,你就完成了
driver.switch_to.window(main_page)
sleep(10)
【讨论】:
【参考方案5】:我们可以通过使用“switchTo”方法在命名窗口之间移动来处理不同的窗口:
driver.switch_to.window("windowName")
<a href="somewhere.html" target="windowName">Click here to open a new window</a>
或者,您可以将“窗口句柄”传递给“switchTo().window()”方法。知道了这一点,就可以像这样遍历每个打开的窗口:
for handle in driver.window_handles:
driver.switch_to.window(handle)
【讨论】:
以上是关于如何在 Selenium for Python 中切换到新窗口?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用selenium和python创建具有相同xpath的元素列表?
如何在 Firefox 58++ 上使用 PHP Webdriver for Selenium 下载文件