<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方法和其他可能的方法,但它不起作用。所以我需要找到路径。如何从该位置获取文本“条款和条件”。
答案 0 :(得分:0)
各种方式......
通过XPath将是:
//h2[text()='Terms and Conditions']
或
//h2[@class='paraHead']
或
//table[@id='RegTable']/descendant::h2[text()='Terms and Conditions']
或使用CSS:
h2.parahead