求助哇!怎么获取下拉文字链接?用xpath和linktest都一直报错
源代码如图:
我用driver.findElement(By.LinkText("新居贷")).click();和driver.findElement(By.xpath(".//*[@id='header']/div/div/ul/li/div/a")).click();
都报错:Element is not currently visible and so may not be interacted with Command duration or timeout: 15 milliseconds
该怎么来定位啊,求助求助...
js还没加载完你就去定位元素了,元素是存在但是不可见,应该加上等待知道js加载完毕再操作 这种我都是定位两次的。
先定位上面的主按钮,再来定位下拉框下的按钮。
页:
[1]