我正在尝试在表单中自动化文件uplad。表格的工作原理如下: - 一些数据插入 - 点击添加附件按钮 - 出现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测试的桌面应用程序的一部分。
我想要处理的窗口是:
基本上我想输入我的路径字符串并打开文件位置。之后我会输入文件名并打开它(执行上传)。目前我的代码如下:
# 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>
答案 0 :(得分:2)
尝试以下代码,如有任何问题,请与我们联系:
WebDriverWait(self.driver, 10).until(EC.element_to_be_clickable((By.XPATH, '//input[@type="file"][@name="qqfile"]'))).send_keys("/path/to/Gandalf.jpg")
P.S。您应该将字符串"/path/to/Gandalf.jpg"
替换为文件的实际路径