自动化常用元素定位

1第二个li下的div

li:nth-child(2) div {

2第一个item下的aaa

from1css=".aaa .bbb:nth-child(1) .ccc"

3两个button并列选择第二个

itcss=".aaa button:nth-child(2)"

4兄弟组件

/* 选择紧跟在 h1 元素后的 p 元素并设置其颜色为红色 */

h1 + p {

color: red;

}

/* 选择 h1 元素后面的所有 p 元素并设置其字体大小为 20px */

h1 ~ p {

font-size: 20px;

}

5 css div的属性data-id为FraudReviewGMI

k2css="div[data-id='FraudReviewGMI']>div>div>div"

6 css 属性data-id为basic_income

k2css="[data-id='basic_income'] input"

xpath

1 li元素的文本为123456

toselect1css="//li[text()='123456']"

2 元素aaa包含文本123456

//*[@class='aaa' and contains(text(),'123456')]

3 元素aaa且文本为123456

//*[@class='myClass' and text()='aaa']

4 li role="option" 并且文字为no 用xpath表示

//li[@role='option' and text()='no']

相关推荐
运维老司机几秒前
Jenkins修改LOGO
运维·自动化·jenkins
D-海漠16 分钟前
基础自动化系统的特点
运维·自动化
我言秋日胜春朝★25 分钟前
【Linux】进程地址空间
linux·运维·服务器
C-cat.1 小时前
Linux|环境变量
linux·运维·服务器
yunfanleo1 小时前
docker run m3e 配置网络,自动重启,GPU等 配置渠道要点
linux·运维·docker
烦躁的大鼻嘎2 小时前
【Linux】深入理解GCC/G++编译流程及库文件管理
linux·运维·服务器
乐大师2 小时前
Deepin登录后提示“解锁登陆密钥环里的密码不匹配”
运维·服务器
ac.char2 小时前
在 Ubuntu 上安装 Yarn 环境
linux·运维·服务器·ubuntu
敲上瘾2 小时前
操作系统的理解
linux·运维·服务器·c++·大模型·操作系统·aigc
传而习乎3 小时前
Linux:CentOS 7 解压 7zip 压缩的文件
linux·运维·centos