from selenium import webdriver
browser=webdriver.Firefox()
browser.maximize_window()
browser.get(‘https://www.baidu.com‘)
js=‘window.open("https://www.sogou.com");‘
browser.execute_script(js)
print browser.current_window_handle # 输出当前窗口句柄(百度)
handles = browser.window_handles
print handles
for handle in handles:
if handle!=browser.current_window_handle:
print ‘switch to ‘,handle
browser.switch_to_window(handle)
print browser.current_window_handle
break
browser.close()
browser.switch_to_window(handles[0])
import time
time.sleep(10)
browser.quit()
打开多个浏览器句柄和标签页的对应关系:
标签页顺序(按照打开顺序):1 2 3 4 5
对应的句柄 :0 4 3 2 1
原文地址:https://www.cnblogs.com/BeyondTechnology/p/9533065.html
时间: 2024-11-09 03:01:39