python+selenium之元素识别二

Posted 喵小超

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium之元素识别二相关的知识,希望对你有一定的参考价值。

一、元素识别
1、submit
1)提交表单 2)解决有些大表单提交按钮在浏览器下方固定隐藏
 
driver.find_element(By.XPATH, ‘//form[@target="hiddenwin"]‘).submit()
 
2、size
获取元素的尺寸
size = driver.find_element(By.XPATH,‘//a[@id="virus-2020"]‘).size #获得文本
print(size)
 
3、text获取
text = driver.find_element(By.XPATH,‘//a[@target="_blank"]‘).text
text = driver.find_element(By.XPATH,‘//a[@id="virus-2020"]‘).text
print(text)
技术图片
4、get_attribute获取
技术图片
 
技术图片
 
技术图片
 
5、界面上某个元素不可见 。 is_dis 判断对象是否可见 type =‘hidden‘
技术图片
 
技术图片
 
6、方法是否被禁用 is_en 登录按钮高亮,则返回为true
技术图片
 
技术图片
7、is_selected() 判断对象是否被选中,针对复选框和勾选框
技术图片
 
技术图片
 
8、tag_name:获取对象标签名称
driver.find_element_by_id("head_checkbox").tag_name
 
9、location:获取元素坐标
driver.find_element_by_id("head_checkbox").location
10、对元素进行截图
screenshet.(‘element.png‘)
技术图片

 

 
 

以上是关于python+selenium之元素识别二的主要内容,如果未能解决你的问题,请参考以下文章

python selenium系列元素等待

Python/Selenium 识别元素问题

Python-selenium-元素识别和定位

Selenium 窗口滚动仅适用于使用 Selenium 和 Python 识别 Select 元素的调试模式

selenium中元素操作之上传操作

python_selenium 之yaml文件读取(以读取元素信息为例)