如何使用java测试在selenium webdriver中将文件从桌面拖放到浏览器?我知道我们可以在Helium做,但我们还没有为商业产品做好准备。
答案 0 :(得分:1)
也许使用PyWinAuto可以实现这一点,但由于Pywinauto不支持基于Web的应用程序,因此不会保持一致。
Steps Can be-
Step 1 - Minimize ur browser using Pywinauto Window.Minimize Method.
Step 2- Mouse Click and Hold on the Icon
Step 3 - Maximize ur Broser using Window.Maximize
Step 4- Click on any coordinate on the browser and release the mouse.
但它可能不是一个完整的证明解决方案。
答案 1 :(得分:0)
针对此方案尝试自动。
挖一个: http://seleniumeasy.com/selenium-tutorials/upload-a-file-using-selenium-webdriver-with-autoit
答案 2 :(得分:0)
Attach()
Func Attach()
WinWait("Open")
While True
$win = WinWait("Open", "")
ControlFocus($win, "", "Open")
Send("{t 1}")
Send("{e 1}")
Send("{s 1}")
Send("{t 1}")
Send("{. 1}")
Send("{p 1}")
Send("{n 1}")
Send("{g 1}")
Sleep(2000)
ControlClick($win, "", "[CLASS:Button; INSTANCE:1]")
WinWaitClose($win)
Wend
EndFunc