我正在尝试使用robotframework来测试iframe,并且在与Select Frame关键字一起使用时,它总是会引发错误,
NoSuchFrameException: Message: no such frame: element is not a frame
(Session info: chrome=80.0.3987.132)
当尝试打印源代码以检查iframe是否可见时,我看到以下内容,
<iframe name="frame-view" title="frame-view" width="100%" height="100%" src=<url> frameborder="0" scrolling="no"
sandbox="allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox">
Oops! Your browser is not compatible with iframes
</iframe>
生成的浏览器是否被阻止访问iframe,因此选择关键字甚至失败了?现在就假设这一点,如果有人可以对此提供见解来解决,那将是很好的。谢谢。