我需要帮助以获得最佳元素定位器,我可以使用以下代码的按钮;
<button onclick="btnProcess($(this), 'Adding...','fa-refresh fa-spin',0);callServer('/DejavuMobile/action/UserGroupModel_AddItem/Users/Add?hfUsername=8_44&ic=44&hfService=', function(response){ btnProcess($(this), 'Add new item','fa-plus',1);loadContent($('#UserAddUI') ,response); });" class="btn btn-xs btn-labeled btn-info" type="button" style="padding-right:12px;padding-left:12px;margin-left:15px;margin-bottom:15px;"><span class="btn-label"><i class="fa fa-plus"></i></span>Add new Group</button>
答案 0 :(得分:2)
最易读的一个:
//button[text()='Add new Group']
可以使用类或任何其他属性创建路径,但在这种情况下通过文本是最明确和最简单的方法。