如何删除xpath属性。我想删除/取消选择所有对象
display: none
属性的样式。
我使用的xpath:
//div[contains(@class,'x-column-header grid-header-ellipses-cls x-column-header') and contains(@style,'auto')]
有超过50个具有相同xpath的元素,但是我必须使用display: none;
消除对象。大约有10个这样的对象。我该如何处理此类物体。
HTML代码:
style="border-width: 1px; width: 60px; right: auto; left: 433px; margin: 0px; top: 0px; display: none;"
请分享您的建议
答案 0 :(得分:2)
您可以添加另一个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')]