如何自动点击没有 ID 的按钮

How to automate to click a button which has no ID

<div class="add" data-icon="'" ng-show="!editMode" ng-click="btnAdd()"> Add an Honor or Award </div> 以上是我试图点击的按钮(添加荣誉或奖励)的 html 代码,但此按钮没有唯一 ID,并且在用户添加多个数据时不断更改 xpath。

使用css

[class='add'][ng-click='btnAdd()']

xpath 也是另一种选择

//div[contains(.,'Add an Honor or Award')]

或者,

//div[@class='add']