python selenium打开新窗口,多窗口切换

Posted BeyondTechnology

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python selenium打开新窗口,多窗口切换相关的知识,希望对你有一定的参考价值。

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

以上是关于python selenium打开新窗口,多窗口切换的主要内容,如果未能解决你的问题,请参考以下文章

Selenium2+python自动化29-js处理多窗口

Selenium2+python自动化29-js处理多窗口

Selenium2+python自动化13-多窗口句柄(handle)

523selenium多窗口处理

Selenium3 + Python3自动化测试系列七——多窗口切换

Selenium-多窗口处理