小编典典

使用Python + Selenium选择iframe

python

因此,我对如何在Selenium中做到这一点完全感到困惑,并且无法在任何地方找到答案,所以我分享了自己的经验。

我正在尝试选择一个iframe,但没有运气(或者无论如何也不能重复)。HTML看起来像这样:

<iframe id="upload_file_frame" width="100%" height="465px" frameborder="0" framemargin="0" name="upload_file_frame" src="/blah/import/">
<html>
    <body>
        <div class="import_devices">
            <div class="import_type">
                <a class="secondary_button" href="/blah/blah/?source=blah">
                    <div class="import_choice_image">
                        <img alt="blah" src="/public/images/blah/import/blah.png">
                    </div>
                    <div class="import_choice_text">Blah Blah</div>
                </a>
            </div>
        </div>
    </body>
</html>

Python代码(使用selenium库)正尝试使用以下方法找到此iframe:

    @timed(650)
def test_pedometer(self):
    sel = self.selenium
    ...
    time.sleep(10)
    for i in range(5):
        try:
            if sel.select_frame("css=#upload_file_frame"): break
        except: pass
        time.sleep(10)
    else: self.fail("Cannot find upload_file_frame, the iframe for the device upload image buttons")

我可以找到的Selenium命令的每种组合都重复失败。偶尔的成功是无法重现的,所以也许是某种竞赛条件或某种东西?从来没有找到正确的方法来获取selenium。


阅读 764

收藏
2020-02-20

共1个答案

小编典典

在使用iframe进行测试并尝试在iframe中插入数据时,这对我适用于Python(v。2.7)webdriverSelenium

self.driver = webdriver.Firefox()

## Give time for iframe to load ##
time.sleep(3)
## You have to switch to the iframe like so: ##
driver.switch_to.frame(driver.find_element_by_tag_name("iframe"))
## Insert text via xpath ##
elem = driver.find_element_by_xpath("/html/body/p")
elem.send_keys("Lorem Ipsum")
## Switch back to the "default content" (that is, out of the iframes) ##
driver.switch_to.default_content()
2020-02-20