0
<table id="RegTable" class="GSTable" cellspacing="0" cellpadding="0" style="margin: 20px auto 0px; width: 580px; padding: 5px; font-size: 12px;">
<tbody>
<tr>
<td id="termstab" height="150" colspan="2">
<div style="width:100%; height:100%; padding-right:5px; overflow-y:auto;">
<p align="justify"></p>
<h2 class="paraHead" align="center">Terms and Conditions</h2>

我如何验证此网页上的“条款和条件”文本。我尝试了 verifyTextPresent 方法和其他可能的方法,但它不起作用。所以我需要找到路径。如何从该位置获取文本“条款和条件”。

4

1 回答 1

0

各种方式...

通过 XPath 将是:

//h2[text()='Terms and Conditions']

或者

//h2[@class='paraHead']

或者

//table[@id='RegTable']/descendant::h2[text()='Terms and Conditions']

或使用 CSS:

h2.parahead
于 2013-04-18T09:44:33.937 回答