c# – 如何在定位元素之前等待加载帧?

我正在等待Selenium在等待另一个元素之前切换更改帧.即

var wait = new WebDriverWait(driver, 15);
wait.Until(ExpectedConditions.FrameToBeAvailableAndSwitchToIt(By.Id("frameA"));

var wait2 = new WebDriverWait(driver, 15);
// wait for element within frameA to exist
wait2.Until(ExpectedConditions.ElementExists(By.Id("elementA")));

如果我抛入一个简单的Thread.Sleep(1000);在第二次等待之前它运行正常,但没有它我得到以下错误:

'unknown error: unhandled inspector error: {"code":-32000,"message":"Cannot find context with specified id"}
    enter code here

有没有更好的方法等待帧上下文切换完成,然后才能填充该帧中的元素?

解决方法:

您需要考虑以下几点:

切换到框架的代码行看起来很完美,不会引发任何错误:

var wait = new WebDriverWait(driver, 15);
wait.Until(ExpectedConditions.FrameToBeAvailableAndSwitchToIt(By.Id("frameA"));

在下一行中,您已尝试使用ExpectedConditions方法ElementExists.根据API Docs ElementExists方法定义为:

An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean that the element is visible.

在元素可见之前,硒不能与元素相互作用.因此,您需要使用方法ElementIsVisible如下:

var wait2 = new WebDriverWait(driver, 15);
wait2.Until(ExpectedConditions.ElementIsVisible(By.Id("elementA")));

在这里您可以找到关于Ways to deal with #document under iframe的详细讨论

上一篇:活体检测-总结


下一篇:javascript – 当我点击指向子页面的链接时,如何在页面页脚中保留一个不重新加载的音乐播放器?