2011-01-10 55 views
0

要匹配的元素標識的元素名稱爲如下:如何硒

... some html.... 

<table> 
some <tr's> 
<tr><td>"caption in a <a> tag"</td><td> result value here </td></tr> 
more <tr's> 

.... more html 

我使用Selenium IDE,但不明白的方式來匹配/隨時隨地捕捉結果值的文本?

回答

0

鑑於

<yyy name="iggy" caption="abcd" level="20"></yyy> 

你想使用

assertAttribute("[email protected]", "abcd") 

它使用的名稱作爲定位和@caption指定你想要的屬性。您可以按照

assertAttribute("[email protected]", "20") 

檢查關卡屬性。您可以使用'validateAttribute'而不是'assertAttribute'。如果要使用'storeAttribute'捕獲屬性值。