我需要使用XPath查找按钮元素。问题是,按钮没有像ID或name这样的唯一标识符,而是位于另一个具有唯一类的元素(即页面上其他元素均未使用的类)的内部。我知道如何访问该元素并按类对其进行标识,但是我不知道如何访问该元素内的按钮。
.//mat-header-cell[@class='mat-header-cell cdk-column-delete mat-column-delete ng-star-inserted']
有什么建议吗?
答案 0 :(得分:0)
我找到的解决方案:
只需将'// button'添加到xpath的末尾即可使用!
.//mat-header-cell[@class='mat-header-cell cdk-column-delete mat-column-delete ng-star-inserted']//button