我想要一個可以打印包含show/id
的頁面中的所有鏈接的硒Java RC測試腳本。Selenium RC-打印所有包含文本的鏈接
我想這
int servicecount= selenium.getXpathCount("xpath=//a[contains(@href,'show/id')]").intValue();
for(int servicecnt=1;servicecnt<=servicecount;servicecnt++)
{
String some_container=selenium.getText("xpath= //a[contains(@href,'show/id')["+servicecnt+"]");
System.out.println(some_container);
}
這是行不通的。請建議解決方案。
能否請您發佈一些例子鏈接?你什麼意思不起作用? – vidit
「這不起作用」......你得到什麼錯誤? –
感謝您的答覆..示例鏈接:https://control.crucial.com.au/myservices/show/id/8160和錯誤19:43:47.068信息 - 命令請求:getText [xpath = // a [包含(@ href,'show/include')包含(@ href,'show/id')[1],]會話b0ba523c7d48455e8798b70d3dc5b1fc 19:43:48.227信息 - 結果:錯誤:無效xpath [2]:// a [會話b0ba523c7d48455e8798b70d3dc5b1fc 失敗:虛擬服務器檢查 – Shari