我遇到的情况是我有两个文本框,在它之间有一个(+)运算符,现在这些文本框中的值会自动更改,用户必须将这些值相加并写入总和并按下nexxt转到下一个页面。,因为值正在改变我不能使用selenium.getvalue evry时间,任何人都可以建议如何处理这个。我正在使用selenium rc with testng,eclipse
答案 0 :(得分:1)
String tb1=selenium.getAttribute("xpath to ur textbox 1/@value");
String tb2=selenium.getAttribute("xpath to ur textbox 2/@value");
int FinalValue = Integer.parseInt(tb1)+Integer.parseInt(tb2);
希望这会对你有所帮助。