大家好
我想在Selenium的网页中测试动态表单。实际上,我需要点击链接来获取表单,表单位于同一页面上,因此表单就在链接后面。
测试必须在我点击链接时开始,Selenium会丢弃一个错误,表示找不到Element id。看看这个:http://www.thalys.com/be/fr/aide#contacts。我必须打开Reclamation链接,当我尝试测试时我有:[错误]元素id =找不到回收并且测试停止。
你知道我必须使用什么样的命令吗?谢谢
答案 0 :(得分:0)
从制定的问题我看到最简单的方法是使用driver get(url)。 e.g。
String url= "http://www.thalys.com/be/fr/aide#contacts"
@Before
public void openFirefox() throws IOException {
driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
driver.get(url);
}
你尝试过这种方法吗?