无法使用selenium和python将sendkeys上传文件到iframe中的button元素

时间:2015-01-29 03:13:56

标签: python html selenium selenium-webdriver

[环境]:Python + Selenium

我正在尝试将本地文件上传到上传文件按钮。

首先,我试图查看是否可以找到该元素并单击该按钮,然后使用

成功
driver.switch_to_frame("upload_frame")
driver.find_elements(By.ID, 'id_file').click()

因此,我使用了相同的方法,但将click()替换为send_keys()进行文件上传。

driver.switch_to_frame("upload_frame")
driver.find_elements(By.ID, 'id_file').send_keys("xxx.bin")

但它无法传递价值。

所以,我尝试使用其他定位器如下:(它们都不能工作)

driver.find_element(By.XPATH, "//button[text()='Update from File']")
driver.find_elements(By.XPATH, "//*[@id='id_file']")
driver.find_elements(By.XPATH, "//input[@id='file']")

此外,我也用很多类似的问题搜索了它,但无法找到解决方案/答案。

想征求您的意见并对此有所了解? 谢谢。

HTML codesnippet:

<iframe id="upload_frame" height="30px" frameborder="0" width="0" src="/web/setting/upload.html?r=1422498136526" scrolling="no"
name="upload_frame" style="width: 170px;">
    <!DOCTYPE html>
    <html>

    <head>

        <body onload="page_load();">
            <div id="content" class="b1">
                <form id="form_firm" action="/cgi-bin/system_mgr.cgi" enctype="multipart/form-data" method="post" name="form_firm">
                    <input type="hidden" value="cgi_firmware_upload" name="cmd">
                    <div class="file_input_div">
                        <button id="id_file" type="button" style="border: 2px solid rgb(70, 70, 70); background: none repeat scroll 0% 0% rgb(33, 33, 33);">
                            <span class="_text" lang="_firmware" datafld="update_b">Update from File</span>
                        </button>
                        <input id="file" class="file_input_hidden" type="file" onchange="start_upload();" onclick="clear_upload_path();" style="cursor:pointer"
                        name="file">
                    </div>
                </form>
            </div>
        </body>

    </html>
</iframe>

1 个答案:

答案 0 :(得分:2)

driver.find_elements(By.ID, 'id_file').send_keys("xxx.bin")无效,因为它与button element不对应input element类型文件。

对于使用selenium的简单文件上传,您必须首先搜索类型为file的输入标记。与您的代码一样,必须

<input id="file" class="file_input_hidden" type="file" onchange="start_upload();" onclick="clear_upload_path();" style="cursor:pointer" name="file">

请使用以下代码进行文件上传:

driver.switch_to_frame("upload_frame")
driver.find_element(By.ID, 'file').send_keys('//path of the file to upload')

注意: - 以上内容对应“输入标记,类型为文件”