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

前言

在进行web自动化的时候,如果我们想知道正在操作的元素,我们可以通过js的方式来实现

实战

from selenium import webdriver
import unittest, time


def highLightElement(driver, element):
    '''
    封装好的高亮显示页面元素的方法
    使用JS代码将传入的页面元素对象的背景颜色和边框
   颜色分别设置为绿色和红色
    '''
    driver.execute_script("arguments[0].setAttribute('style',arguments[1]);", element,
                          "background:green;border:2px solid red;")


class TestDemo(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.Chrome()

    def test_HighLightWebElement(self):
        url = 'http://www.sogou.com'
        self.driver.get(url)
        searchBox = self.driver.find_element_by_id('query')
        # 调用高亮显示元素的封装函数,将搜索框高亮显示
        highLightElement(self.driver, searchBox)
        time.sleep(3)
        searchBox.send_keys('测试开发')
        sumitbutton = self.driver.find_element_by_id('stb')
        # 调用高亮显示元素的封装函数,将搜索按钮高亮显示
        highLightElement(self.driver, sumitbutton)
        time.sleep(3)
        sumitbutton.click()
        time.sleep(3)

    def tearDown(self):
        self.driver.quit()


if __name__ == '__main__':
    unittest.main()

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/11285762.html