python爬虫之selenium--多窗口操作

前言

想一想,我们为什么要获取窗口句柄呢?有什么用呢?

来假设一下,我们打开了一个网站,点击了一个按钮,新打开了一个页面,我们在新页面操作完成之后,需要回到原来的页面继续操作,这时候你如果继续操作原来的页面会报错的。因为当前的窗口句柄不是原来的,这时候就需要用到driver.switch_to.window('窗口句柄')来切换到之前的窗口了

实战

from selenium import webdriver
import unittest
import time


class Test_windowHandle(unittest.TestCase):
    def test_getwindowHandle(self):
        url = 'http://www.baidu.com'
        self.driver = webdriver.Chrome()
        self.driver.get(url)
        # 获取当前窗口句柄
        now_handle = self.driver.current_window_handle
        # 打印当前窗口句柄
        print(now_handle)
        self.driver.find_element_by_id('kw').send_keys('python')
        self.driver.find_element_by_id('su').click()
        time.sleep(3)
        self.driver.find_element_by_link_text('官网').click()
        time.sleep(5)
        all_handles = self.driver.window_handles
        print(self.driver.window_handles[-1])
        for handle in all_handles:
            if handle != now_handle:
                self.driver.switch_to.window(now_handle)  # 切换到原来的窗口
                print(handle)


test1 = Test_windowHandle()
test1.test_getwindowHandle()

结果:

CDwindow-7A4FB6B28A26B9F733880575DE519BBB
CDwindow-EB4CC0FE714BA702CFE7C93FEE21EF5E
CDwindow-EB4CC0FE714BA702CFE7C93FEE21EF5E

python爬虫之selenium-介绍和安装

python爬虫之selenium-浏览器操作方法

python爬虫之selenium-元素的定位

python爬虫之selenium--Xpath定位

python爬虫之selenium--iframe

python爬虫之selenium--单选下拉列表

python爬虫之selenium--鼠标操作

python爬虫之selenium--键盘操作

python爬虫之selenium--等待的三种方式

python爬虫之selenium--多窗口操作

python爬虫之selenium--操作JS弹框

python爬虫之selenium--上传文件

python爬虫之selenium--浏览器窗口截图

python爬虫之selenium--加载浏览器配置

python爬虫之selenium--表格和复选框的定位

python爬虫之selenium--获取HTML源码断言和URL地址

python爬虫之selenium--设置浏览器的位置和高度宽度

python爬虫之selenium--页面元素相关的操作

python爬虫之selenium--浏览器滚动条操作

python爬虫之selenium--拖拽页面元素

python爬虫之selenium--页面元素是否可见和可操作

python爬虫之selenium--高亮显示正在操作的元素

python爬虫之selenium--更改标签的属性值

python爬虫之selenium--单选框和复选框的操作

python爬虫之selenium--cookie操作

python爬虫之selenium--记录日志信息

转自:https://www.cnblogs.com/zouzou-busy/p/11154917.html