python+selenium 多窗口切换-window_handles
1. 常用方法
使用背景:有些网站点击链接会新打开一个tab,如下图打开了两个浏览器窗口;元素定位正确,调试时一直报错,原因是未切换到对应的窗口句柄,切换到对应的窗口句柄才可以正常操作
current_window_handle:获得当前窗口句柄 window_handles:获取所有窗口的句柄到当前会话,返回一个窗口句柄列表 switch_to.window():切换窗口句柄 # -*-coding:utf-8一*- import time from selenium import webdriver driver = webdriver.Chrome() driver.implicitly_wait(10) driver.get("http://www.baidu.com") # 获得百度搜索窗口句柄 search_windows = driver.current_window_handle print(search_windows) driver.find_element_by_link_text('登录').click() driver.find_element_by_link_text("立即注册").click() # 获得当前所有打开的窗口的句柄 all_handles = driver.window_handles print(all_handles) # 切换到注册窗口 方式1 通过判断是否与当前窗口句柄一致 for handle in all_handles: if handle != search_windows: driver.switch_to.window(handle) driver.find_element_by_name("userName").send_keys('我是测试小白') driver.find_element_by_name('phone').send_keys('12345678910') time.sleep(2) # 后续步骤省略 # 切换到注册窗口 方式2 通过获取的所有窗口列表的索引切换 # driver.switch_to.window(all_handles[1]) # driver.find_element_by_name("userName").send_keys('我是测试小白') # driver.find_element_by_name('phone').send_keys('12345678910') # time.sleep(2) driver.quit()
声明 欢迎转载,但请保留文章原始出处:) 博客园:https://www.cnblogs.com/chenxiaomeng/
如出现转载未声明 将追究法律责任~谢谢合作