在 Selenium 上切换 window
Switch window on Selenium
我在 Python 中将 Selenium 与 PhantomJS 一起使用。
我需要开一个新的window并控制它
出于测试目的,我这样做:
from selenium import webdriver
driver = webdriver.PhantomJS()
driver.get('http://www.google.com.br')
handle = driver.execute_script('return window.open("http://www.pudim.com.br/", "any", "height = 450, width = 800, menubar=yes,scrollbars=yes,toolbar=yes,location=no,resizable=yes");')
driver.switch_to.window(driver.window_handles[1])
print(driver.current_url)
以上代码部分有效。最后一条消息上打印的 URL 是 about: blank
,正如预期的那样是 http://www.pudim.com.br/
由于没有内置支持 selenium 在多window(多选项卡)环境中工作,而是启动一个新的驱动程序:
new_driver = webdriver.PhantomJS()
new_driver.set_window_size(800, 450)
new_driver.get("http://www.pudim.com.br/")
此外,您当前的代码对我有用:
>>> from selenium import webdriver
>>> driver = webdriver.PhantomJS()
>>>
>>> driver.get('http://www.google.com.br')
>>> handle = driver.execute_script('return window.open("http://www.pudim.com.br/", "any", "height = 450, width = 800, menubar=yes,scrollbars=yes,toolbar=yes,location=no,resizable=yes");')
>>> driver.switch_to.window(driver.window_handles[1])
>>> print(driver.current_url)
http://www.pudim.com.br/
这很可能意味着您在页面尚未加载时请求 current_url
。在这种情况下,使用 Explicit Wait
等待特定元素出现在页面上。
你也可以增加page load wait timeout,但是这个不太靠谱。
我在 Python 中将 Selenium 与 PhantomJS 一起使用。 我需要开一个新的window并控制它
出于测试目的,我这样做:
from selenium import webdriver
driver = webdriver.PhantomJS()
driver.get('http://www.google.com.br')
handle = driver.execute_script('return window.open("http://www.pudim.com.br/", "any", "height = 450, width = 800, menubar=yes,scrollbars=yes,toolbar=yes,location=no,resizable=yes");')
driver.switch_to.window(driver.window_handles[1])
print(driver.current_url)
以上代码部分有效。最后一条消息上打印的 URL 是 about: blank
,正如预期的那样是 http://www.pudim.com.br/
由于没有内置支持 selenium 在多window(多选项卡)环境中工作,而是启动一个新的驱动程序:
new_driver = webdriver.PhantomJS()
new_driver.set_window_size(800, 450)
new_driver.get("http://www.pudim.com.br/")
此外,您当前的代码对我有用:
>>> from selenium import webdriver
>>> driver = webdriver.PhantomJS()
>>>
>>> driver.get('http://www.google.com.br')
>>> handle = driver.execute_script('return window.open("http://www.pudim.com.br/", "any", "height = 450, width = 800, menubar=yes,scrollbars=yes,toolbar=yes,location=no,resizable=yes");')
>>> driver.switch_to.window(driver.window_handles[1])
>>> print(driver.current_url)
http://www.pudim.com.br/
这很可能意味着您在页面尚未加载时请求 current_url
。在这种情况下,使用 Explicit Wait
等待特定元素出现在页面上。
你也可以增加page load wait timeout,但是这个不太靠谱。