使用selenium和phpunit从xptha获取文本

时间:2013-04-18 09:42:30

标签: selenium phpunit

<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方法和其他可能的方法,但它不起作用。所以我需要找到路径。如何从该位置获取文本“条款和条件”。

1 个答案:

答案 0 :(得分:0)

各种方式......

通过XPath将是:

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

//h2[@class='paraHead']

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

或使用CSS:

h2.parahead