如何使用Selenium WebDriver处理Windows文件上传?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Selenium WebDriver处理Windows文件上传?相关的知识,希望对你有一定的参考价值。
我在Stack Overflow上使用Selenium WebDriver看到了很多关于文件上传的问题和解决方案。但他们都没有为以下场景工作。
有人给出了如下解决方案
// assuming driver is a healthy WebDriver instance
WebElement fileInput = driver.findElement(By.name("uploadfile"));
fileInput.sendKeys("C:/path/to/file.jpg");
但我仍然找不到窗口句柄。我该怎么做?
我正在寻找上述方案的解决方案。
请在以下任何网站上查看此信息。
http://www.uploadify.com/demos/
http://www.zamzar.com/
// assuming driver is a healthy WebDriver instance
WebElement fileInput = driver.findElement(By.name("uploadfile"));
fileInput.sendKeys("C:/path/to/file.jpg");
嘿,这是我的某个地方:)。
对于Zamzar网络,它应该完美地工作。您不要单击该元素。你只需输入它的路径。具体来说,这应该是绝对可以的:
driver.findElement(By.id("inputFile")).sendKeys("C:/path/to/file.jpg");
在Uploadify网站的情况下,你是一个泡菜,因为上传的东西不是input
,而是一个Flash对象。 WebDriver没有允许您使用浏览器对话框(或Flash对象)的API。
因此,在您单击Flash元素后,会弹出一个窗口,您将无法控制。在我所知道的浏览器和操作系统中,你几乎可以假设在窗口打开后,光标位于File name
输入中。请确保在您的情况下这个假设也是正确的。
如果没有,您可以尝试按Alt + N跳转到它,至少在Windows上...
如果是,您可以使用Robot
类“盲目地”键入路径。在你的情况下,这将是一种方式:
driver.findElement(By.id("SWFUpload_0")).click();
Robot r = new Robot();
r.keyPress(KeyEvent.VK_C); // C
r.keyRelease(KeyEvent.VK_C);
r.keyPress(KeyEvent.VK_COLON); // : (colon)
r.keyRelease(KeyEvent.VK_COLON);
r.keyPress(KeyEvent.VK_SLASH); // / (slash)
r.keyRelease(KeyEvent.VK_SLASH);
// etc. for the whole file path
r.keyPress(KeyEvent.VK_ENTER); // confirm by pressing Enter in the end
r.keyRelease(KeyEvent.VK_ENTER);
它很糟糕,但它应该工作。请注意,您可能需要这些:How can I make Robot type a `:`?和Convert String to KeyEvents(另外还有新的和闪亮的KeyEvent#getExtendedKeyCodeForChar()
,它可以完成类似的工作,但只能从JDK7获得)。
对于Flash,我所知道的唯一选择(来自this discussion)是使用暗技术:
首先,修改Flash应用程序的源代码,使用ActionScript的ExternalInterface API公开内部方法。一旦公开,这些方法将由浏览器中的javascript调用。
其次,现在JavaScript可以在您的Flash应用程序中调用内部方法,您可以使用WebDriver在网页中进行JavaScript调用,然后调用您的Flash应用程序。
这项技术在flash-selenium项目的文档中进一步解释。 (http://code.google.com/p/flash-selenium/),但该技术背后的想法同样适用于WebDriver。
首先将文件添加到项目资源目录中
然后
public YourPage uploadFileBtnSendKeys() {
final ClassLoader classLoader = getClass().getClassLoader();
final File file = new File(classLoader.getResource("yourFile.whatever").getPath());
uploadFileBtn.sendKeys(file.getPath());
return this;
}
Walla,您将看到所选的文件,并跳过了文件浏览器窗口
使用AutoIt脚本处理Selenium Webdriver中的文件上载。它适用于上述场景。
Runtime.getRuntime().exec("E:\AutoIT\FileUpload.exe");
请使用以下链接获取进一步的帮助:http://www.guru99.com/use-autoit-selenium.html
找到元素(必须是type =“file”属性的输入元素)并将路径发送到该文件。
WebElement fileInput = driver.findElement(By.id("uploadFile"));
fileInput.sendKeys("/path/to/file.jpg");
注意:如果您使用的是RemoteWebDriver,则还必须设置文件检测器。默认值为UselessFileDetector
WebElement fileInput = driver.findElement(By.id("uploadFile"));
driver.setFileDetector(new LocalFileDetector());
fileInput.sendKeys("/path/to/file.jpg");
webDriver.FindElement(By.CssSelector("--cssSelector--")).Click();
webDriver.SwitchTo().ActiveElement().SendKeys(fileName);
对我来说效果很好。采用另一种方法,由Matt在C#.net上面提供的答案也适用于上传框的类名#32770。
下面的一个对我有用
webDriver.findElement(By.xpath("//input[@type='file' and @name='importFile']")).sendKeys("C:/path/to/file.jpg");
将路径中的反斜杠加倍,如下所示:
driver.findElement(browsebutton).sendKeys("C:\Users\Desktop\Training\Training.jpg");
下面的代码适用于我:
public void test() {
WebDriver driver = new FirefoxDriver();
driver.get("http://www.freepdfconvert.com/pdf-word");
driver.findElement(By.id("clientUpload")).click();
driver.switchTo()
.activeElement()
.sendKeys(
"/home/likewise-open/GLOBAL/123/Documents/filename.txt");
driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);
driver.findElement(By.id("convertButton"));
使用C#和Selenium这个代码在这里适用于我,注意如果它不是localhost,你将需要使用一个参数来替换你的特定服务器的FindWindow调用中的“localhost”,如果还有更多,则跟踪哪个是最新的对话框打开而不是一个对话挂起,但这应该让你开始:
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll", EntryPoint = "FindWindow")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
public static void UploadFile(this IWebDriver webDriver, string fileName)
{
webDriver.FindElement(By.Id("SWFUpload_0")).Click();
var dialogHWnd = FindWindow(null, "Select file(s) to upload by localhost");
var setFocus = SetForegroundWindow(dialogHWnd);
if (setFocus)
{
Thread.Sleep(500);
SendKeys.SendWait(fileName);
SendKeys.SendWait("{ENTER}");
}
}
将System.Windows.Forms二进制文件导入测试解决方案,并在单击UI上的“上载”按钮时调用以下两个LOC。
// Send the file path and enter file path and wait.
System.Windows.Forms.SendKeys.SendWait("complete path of the file");
System.Windows.Forms.SendKeys.SendWait("{ENTER}");
下面的代码适用于我:
// wait for the window to appear
WebDriverWait wait = new WebDriverWait(driver, 10);
wait.until(ExpectedConditions.alertIsPresent());
// switch to the file upload window
Alert alert = driver.switchTo().alert();
// enter the filename
alert.sendKeys(fileName);
// hit enter
Robot r = new Robot();
r.keyPress(KeyEvent.VK_ENTER);
r.keyRelease(KeyEvent.VK_ENTER);
// switch back
driver.switchTo().activeElement();
有一种更简单的方法可以解决这个问题,那就是Slanec描述的内容。当您使用英语键盘时,Hes解决方案可以正常工作,如果不是,您将很难尝试“映射”特殊字符的键。
您可以使用robot.keyPress
将String复制到剪贴板,然后粘贴它,而不是robot.keyRelease
和Toolkit
每一个键。
StringSelection s = new StringSelection("Path to the file");
Toolkit.getDefaultToolkit().getSystemClipboard().setContents(s, null);
Robot robot = new Robot();
robot.keyPress(java.awt.event.KeyEvent.VK_ENTER);
robot.keyRelease(java.awt.event.KeyEvent.VK_ENTER);
robot.keyPress(java.awt.event.KeyEvent.VK_CONTROL);
robot.keyPress(java.awt.event.KeyEvent.VK_V);
robot.keyRelease(java.awt.event.KeyEvent.VK_CONTROL);
Thread.sleep(3000);
robot.keyPress(java.awt.event.KeyEvent.VK_ENTER);
我使用vbsscript文件在shell脚本中使用了sendkeys。下面是vbs文件中的代码,
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys "C:Demo.txt"
WshShell.SendKeys "{ENTER}"
下面是运行此vbs文件的selenium代码行,
driver.findElement(By.id("uploadname1")).click();
Thread.sleep(1000);
Runtime.g以上是关于如何使用Selenium WebDriver处理Windows文件上传?的主要内容,如果未能解决你的问题,请参考以下文章
Selenium w/Firefox 88 更改为 navigator.webdriver
如何使用 Selenium WebDriver 处理 Windows 文件上传?
如何使用 selenium 或 webdriver 在测试自动化中处理文件上传
如何使用Selenium WebDriver处理Windows文件上传?