首页 > 解决方案 > 使用 Python 在 selenium Webdriver 中通过 Url 上传图像

问题描述

driver.find_element(By.XPATH, "//*[@id='upl-zone']/input").send_keys("https://ercess.com//images//events//-Blockchain-2019-36613-banner.png")

有什么办法可以使它起作用吗?

[错误] selenium.common.exceptions.InvalidArgumentException:消息:找不到文件:https ://ercess.com//images//events//-Blockchain-2019-36613-banner.png

标签: pythonseleniumselenium-webdriver

解决方案


您首先需要将图像下载到您的计算机,然后将其上传...

您可以使用requests

import requests

URL = "https://ercess.com//images//events//-Blockchain-2019-36613-banner.png"
picture_req = requests.get(URL)
if picture_req.status_code == 200:
    with open("/path/to/image.jpg", 'wb') as f:
        f.write(picture_req.content)

然后发送/path/to/image.jpg

driver.find_element(By.XPATH, "//*[@id='upl-zone']/input").send_keys("/path/to/image.jpg")

或者您可以使用您将使用Legacy interface的:urlliburlretrieve

import urllib.request

URL = "https://ercess.com//images//events//-Blockchain-2019-36613-banner.png"
urllib.urlretrieve(URL, "file_name.png")
driver.find_element(By.XPATH, "//*[@id='upl-zone']/input").send_keys("file_name.png")

编辑:

要使用 send_keys 发送文件的路径,您可以使用pathlib

from pathlib import Path

# `cwd`: current directory is straightforward
cwd = Path.cwd()
# using "F"string for format you can use: image_file_name = str(cwd) + "\" + "file_name.png" 
image_file_name = fr"{cwd}\file_name.png"
# this print is just to show the image_file_name   
print(image_file_name)

希望这对你有帮助!


推荐阅读