您现在的位置是:课程教程文章
python网页窗口如何切换
2023-12-13 23:40课程教程文章 人已围观
当进行web自动化时,有时会出现打开新窗口,在当前窗口中找不到另一个窗口的元素,此时需要使用窗口切换。
说明
1、窗口切换的前提是触发新窗口、新窗口(通常使用句柄)和获取窗口的句柄。
2、diver.window_handles获取窗口的所有句柄,有返回值,需要变量接收。
以列表的形式返回,最新打开的窗口句柄是列表中的最后一个值。
切换窗口
diver.switch_to.window("切换窗口的句柄")
实例
fromseleniumimportwebdriver fromselenium.webdriver.common.byimportBy fromselenium.webdriver.support.waitimportWebDriverWait fromselenium.webdriver.supportimportexpected_conditionsasEC importtime #打开一个会话 diver=webdriver.Chrome() #全屏 diver.maximize_window() diver.implicitly_wait(30) try: #访问百度链接 diver.get("https://www.baidu.com") WebDriverWait(diver,20).until(EC.visibility_of_element_located((By.ID,"kw"))) #等待文本框可见 diver.find_element_by_id("kw").send_keys("百度贴吧")#输入内容 WebDriverWait(diver,20).until(EC.visibility_of_element_located((By.ID,"su"))) #等待百度一下可见 diver.find_element_by_id("su").click()#点击 WebDriverWait(diver,20).until( EC.visibility_of_element_located((By.XPATH,'//a[text()="吧-"]'))) diver.find_element_by_xpath('//a[text()="吧-"]').click()#点击 time.sleep(3) handles_list=diver.window_handles print(handles_list)#获取所有窗口的handle diver.switch_to.window(handles_list[-1])#切换到最后一个窗口——切换到全新的html页面 #等待百度贴吧可见 WebDriverWait(diver,20).until( EC.visibility_of_element_located(( By.ID,"tab_picture")))#等待图片按钮可见 diver.find_element_by_id("tab_picture").click() time.sleep(3) #退出 diver.quit() exceptExceptionase: #退出 diver.quit() raisee
以上就是python网页窗口的切换方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
课程教程:python网页窗口如何切换下一篇:没有了