如何获取xpath或其他定位器?

时间:2017-07-07 13:59:05

标签: css xpath webdriver

我需要帮助以获得最佳元素定位器,我可以使用以下代码的按钮;

<button onclick="btnProcess($(this), 'Adding...','fa-refresh fa-spin',0);callServer('/DejavuMobile/action/UserGroupModel_AddItem/Users/Add?hfUsername=8_44&amp;ic=44&amp;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>

1 个答案:

答案 0 :(得分:2)

最易读的一个:

//button[text()='Add new Group']

可以使用类或任何其他属性创建路径,但在这种情况下通过文本是最明确和最简单的方法。