python下彻底解决浏览器多窗口打开与切换问题
Posted 多情俏狐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python下彻底解决浏览器多窗口打开与切换问题相关的知识,希望对你有一定的参考价值。
# coding=utf-8
from selenium import webdriver
import time
browser=webdriver.Firefox()
#browser.maximize_window() # 窗口最大化
browser.get(‘https://www.baidu.com‘) # 在当前浏览器中访问百度
print("标题:"+browser.title,end="
当前窗口句柄")
print(browser.current_window_handle) # 输出当前窗口句柄(百度)
# 新开一个窗口,通过执行js来新开一个窗口
js=‘window.open("https://www.sogou.com");‘
browser.execute_script(js)
handles = browser.window_handles # 获取当前窗口句柄集合(列表类型)
print("所有窗口句柄:")
print(handles) # 输出句柄集合
for handle in handles:# 切换窗口(切换到搜狗)
if handle!=browser.current_window_handle:
print(‘switch to ‘,handle)
browser.switch_to_window(handle)
print("标题:"+browser.title,end="
当前窗口句柄:")
print(browser.current_window_handle) # 输出当前窗口句柄(搜狗)
break
browser.close() #关闭当前窗口(搜狗)
browser.switch_to_window(handles[0]) #切换回百度窗口
print("标题:"+browser.title)
import time
time.sleep(5)
browser.quit()
以上是关于python下彻底解决浏览器多窗口打开与切换问题的主要内容,如果未能解决你的问题,请参考以下文章
单击按钮后切换到打开的新浏览器 [Python][Selenium]
selenium+python自动化92-多线程启动多个不同浏览器