如何删除 xpath 属性。我想删除/取消选择所有具有属性样式的对象。display: none我用过的光通://div[contains(@class,'x-column-header grid-header-ellipses-cls x-column-header') and contains(@style,'auto')]有超过50个元素具有相同的xpath,但是我需要用来消除对象。将有大约10个这样的物体。我该如何处理这样的对象。display: none;代码:style="border-width: 1px; width: 60px; right: auto; left: 433px; margin: 0px; top: 0px; display: none;"请分享您的建议
1 回答
慕的地8271018
TA贡献1796条经验 获得超4个赞
您可以添加另一个 AND 运算符,并使用 NOT 删除这些结果:
//div[contains(@class,'x-column-header grid-header-ellipses-cls x-column-header') and contains(@style,'auto') and not(contains(@style, 'display: none')]
添加回答
举报
0/150
提交
取消