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

前言

单选框和复选框在网页操作中也就经常用到的,接下来一起看通过selenium如何操作单选框和复选框

单选框操作

from selenium import webdriver
import unittest


class Test_radio(unittest.TestCase):
    def test_SelectRadio(self):
        url = 'D:\hh.html'
        self.driver = webdriver.Chrome()
        self.driver.get(url)
        # 查找所有name属性为’fruit‘的单选框元素对象,并放在列表中
        radioList = self.driver.find_elements_by_xpath('//input[@name="fruit"]')
        '''
        循环遍历radioList中的每个单选按钮,查找        
        value属性值为’orange‘的单选框
        如果找到后,发现未处于选中状态,则调用click方法选中
        '''
        for radio in radioList:
            if radio.get_attribute('value') == 'orange':
                if not radio.is_selected():
                    radio.click()


test1 = Test_radio()
test1.test_SelectRadio()

复选框的操作

from selenium import webdriver
import unittest


class Test_CheckBox(unittest.TestCase):
    def test_SelectCheckBox(self):
        url = 'D:\hh.html'
        self.driver = webdriver.Chrome()
        self.driver.get(url)

        berry = self.driver.find_element_by_xpath('//input[@value="berry"]')
        berry.click()

        # 断言草莓复选框被成功选中
        self.assertTrue(berry.is_selected(), '草莓复选框未被选中')

        # 选中则取消
        if berry.is_selected():
            berry.click()
            # 断言未被选中
            self.assertFalse(berry.is_selected())
            # 查找所有name属性为’fruit‘的单选框元素对象,并放在列表中

        CheckBoxList = self.driver.find_elements_by_xpath('//input[@name="fruit"]')
        # 遍历CheckBoxList列表中的所有复选框元素,让全部复选框处于被选中状态
        for box in CheckBoxList:
            if not box.is_selected():
                box.click()


test1 = Test_CheckBox()
test1.test_SelectCheckBox()

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