我如何自动化两个 div 类之间的按钮
How can i automate buttons between two div classes
我的 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>
我需要使用我的网络驱动程序脚本点击此处的删除按钮
我假设您正在使用 selenium webdriver 并且 xpath 是一个选项。使用 xpath
和基于文本的搜索
//span[.='Delete']
我的 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>
我需要使用我的网络驱动程序脚本点击此处的删除按钮
我假设您正在使用 selenium webdriver 并且 xpath 是一个选项。使用 xpath
和基于文本的搜索
//span[.='Delete']