0

我是 selenium 的新手。我的要求是使用浏览按钮自动上传 csv 文件。我面临的问题是我有 2 个带有两个浏览按钮的表单,具有相同的名称和相同的值。所以我必须基于单击浏览按钮表单(表单名称不同)。下面是我的示例代码

单击浏览按钮的脚本:

#include <IE.au3>
; Internet Explorer is partly integrated in shell.application
$oShell = ObjCreate("shell.application")    ; Get the Windows Shell Object
$oShellWindows=$oShell.windows          ; Get the collection of open shell Windows
$MyIExplorer=""
for $Window in $oShellWindows       ; Count all existing shell windows
  ; Note: Internet Explorer appends a slash to the URL in it's window name
  if StringInStr($Window.LocationURL,"http://") then
      $MyIExplorer=$Window
      exitloop
  endif
next
$oForm = _IEGetObjByName ($MyIExplorer, "document.forms['UploadForm'].elements['browsebutton']")
_IEAction($oForm, "click")

下面是我上传 csv 文件的脚本

WinActivate("File Upload");
Local $file ="C:\Work\selenium\abc.csv"
ControlSetText("Choose file", "", "Edit1", $file )
ControlClick("File Upload", "", "Button2")

在我的 java 类中调用如下代码:

Process proc = Runtime.getRuntime().exec("C:\\bowsebutton.exe");
Process proc1 = Runtime.getRuntime().exec("C:\\test3.exe");

当我运行 seleinum 时根本无法单击浏览按钮。但是如果我手动单击浏览按钮,则 csv 会自动上传并提交文件。

我无法弄清楚为什么没有点击浏览按钮。任何帮助将不胜感激。

4

1 回答 1

1

您必须使用 FindElement 来弹出对话框。我不知道它在 Java 中的样子,但它与 C# 中的相去不远

    InternetExplorerDriver driver = new InternetExplorerDriver();

    //Do stuff obviously ....

    driver.FindElement(By.XPath("//input[@type='file']")).SendKeys(@"c:\somefile.txt");
于 2013-12-27T22:57:13.313 回答