gpt4 book ai didi

python - 使用 Selenium 和 pywinauto 自动上传文件

转载 作者:行者123 更新时间:2023-11-28 17:24:09 25 4
gpt4 key购买 nike

我正在尝试自动上传表单中的文件。该表格的工作原理如下:- 一些数据插入- 点击添加附件按钮- 出现windows对话窗口- 选择文件- 打开它

我正在使用 python、Selenium webdriver 和 pywinauto 模块。

描述了类似的方法 here但它只处理文件名而不处理文件路径。

无法使用 Selenium 将键发送到元素,因为没有包含路径的文本框。我已尝试将 AutoIT 与以下代码结合使用:

$hWnd = WinWaitActive("[REGEXPTITLE:Otev.*|Op.*)]")

If WinGetTitle($hWnd) = "Open" then
Send(".\Gandalf")
Send("{ENTER}")
Else
Send(".\Gandalf")
Send("{ENTER}")
EndIf

代码基本上等待标题为 Open 或 Otevrit(在 CZ 中)的窗口出现,然后执行魔术。此代码被编译成 .exe 并在适当的时候运行。

代码工作正常并可以上传,但我无法更改文件路径。如果我想在任何计算机上运行我的代码,这是必要的。代码的移动性是必要的,因为它是运行 Selenium 测试的桌面应用程序的一部分。

我要处理的窗口是:

enter image description here

基本上我想输入我的路径字符串并打开文件位置。之后我会输入文件名并打开它(执行上传)。目前我的代码如下:

    # click on upload file button:
WebDriverWait(self.driver, 10).until(EC.presence_of_element_located((By.XPATH, "//*[@class=\"qq-upload- button-selector qq-upload-button\"]"))).click()
# wait two seconds for dialog to appear:
time.sleep(2)
# start the upload
dialogWindow = pywinauto.application.Application()
windowHandle = pywinauto.findwindows.find_windows(title=u'Open', class_name='#32770')[0]
window = dialogWindow.window_(handle=windowHandle)
# this is the element that I would like to access (not sure)
toolbar = window.Children()[41]
# send keys:
toolbar.TypeKeys("path/to/the/folder/")
# insert file name:
window.Edit.SetText("Gandalf.jpg")
# click on open:
window["Open"].Click()

我不确定我的问题出在哪里。输入文件名没问题,我可以这样做:

window.Edit.SetText("Gandalf.jpg")

但是由于某些原因我不能对路径元素做同样的事情。 我已尝试将焦点设置在它上面并单击,但代码失败。

谢谢你的帮助。

按钮 HTML:

<div class="qq-upload-button-selector qq-upload-button" style="position: relative; overflow: hidden; direction: ltr;">
<div>UPLOAD FILE</div>
<input qq-button-id="8032e5d2-0f73-4b7b-b64a-e125fd2a9aaf" type="file" name="qqfile" style="position: absolute; right: 0px; top: 0px; font-family: Arial; font-size: 118px; margin: 0px; padding: 0px; cursor: pointer; opacity: 0; height: 100%;"></div>

最佳答案

尝试以下代码,如有任何问题请告诉我:

WebDriverWait(self.driver, 10).until(EC.element_to_be_clickable((By.XPATH, '//input[@type="file"][@name="qqfile"]'))).send_keys("/path/to/Gandalf.jpg")

附言您应该将字符串 "/path/to/Gandalf.jpg" 替换为文件的实际路径

关于python - 使用 Selenium 和 pywinauto 自动上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40040564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com