selenium 是否可以通过testRigor Path点击元素?

utugiqy6  于 2022-11-24  发布在  Go
关注(0)|答案(1)|浏览(159)

我想使用**(testRigor Path)**点击元素,这是我从Selectors hub扩展中获得的。这可能吗?注意我不能用任何其他方式点击它,因为xpath和css选择器经常更改,因此testRigor将是最好的选择(我使用python seleinum),这里是元素的outerhtml

<a tabindex="-1" href="javascript:void(0)" aria-hidden="true" data-value="{&quot;stringVal&quot;:&quot;LV&quot;}" id="cvf_phone_cc_native_112" class="a-dropdown-link" style="" xpath="1"><span>Latvia </span><span dir="ltr">+371 </span></a>
5lhxktic

5lhxktic1#

在testRigor中,最好使用对最终用户可见的内容;在本例中,为拉脱维亚或+371.0。
click "Latvia"click "+371.0"
尽管testRigor路径包含这两个值,但它们是单独的节点,testRigor不会将它们连接起来。

相关问题