如何在两个div类之间自动化按钮

时间:2015-01-06 11:04:44

标签: selenium uibutton automation

我的HTML代码看起来像这样

<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<div class="ui-dialog-buttonset">
<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" type="button" role="button" aria-disabled="false">
<span class="ui-button-text">Delete</span>
</button>
<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" type="button" role="button" aria-disabled="false">
<span class="ui-button-text">Cancel</span>
</button>
</div>

我需要使用我的webdriver脚本点击此处的删除按钮

1 个答案:

答案 0 :(得分:1)

我假设您使用的是selenium webdriver,xpath是一个选项。使用xpath和基于文字的搜索

//span[.='Delete']