2

我正在尝试使用plupload队列小部件为上传设置测试。我正在使用Splinter进行浏览器内测试,但我找不到实现它的方法。Splinter 有一些附加文件的方法,但前提是它是一个简单的文件字段。另一种方法是单击按钮浏览文件,然后选择文件......但我认为不可能使用 Splinter(或 selenium),是吗?或者通过拖放文件。

有人对自动化这些测试的最佳方法有任何建议吗?

4

2 回答 2

1

可以使用 Selenium-WebDriver 自动执行在 PLUpload 控件上完成的用户操作。请在下面找到 WebDriver C# 代码,该代码单击 Flash 按钮对象并使用键盘事件选择文件,

using System;
using System.Windows.Forms;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium;
using OpenQA.Selenium.Support;
using OpenQA.Selenium.Interactions;
using NUnit.Framework;
namespace BusinessCreation
{
    class PlUpload
    {
        static void Main(string[] args)
        {
               IWebDriver driver = new FirefoxDriver();
               driver.Navigate().GoToUrl("http://www.plupload.com/example_queuewidget.php");
               driver.FindElement(By.XPath("//object[@data='/plupload/js/plupload.flash.swf']")).Click();
               SendKeys.SendWait(@"C:\Users\Public\Pictures\Sample Pictures\Dock.jpg");
               SendKeys.SendWait(@"{Enter}");
         }
    }
}
于 2013-03-22T13:12:49.130 回答
0

PlUpload 小部件也有类似的问题。感谢 CheryJose 让我走上正轨。

首先,我必须创建一个小类来找出打开了哪些窗口并将它们作为窗口字典返回。

public static IDictionary<string, IntPtr> GetOpenWindows()
{
    IntPtr lShellWindow = GetShellWindow();
    Dictionary<string, IntPtr> lWindows = new Dictionary<string, IntPtr>();
    EnumWindows(delegate(IntPtr hWnd, int lParam)
    {
        if (hWnd == lShellWindow) return true;
        if (!IsWindowVisible(hWnd)) return true;
        int lLength = GetWindowTextLength(hWnd);
        if (lLength == 0) return true;

        StringBuilder lBuilder = new StringBuilder(lLength);
        GetWindowText(hWnd, lBuilder, lLength + 1);
        lWindows[lBuilder.ToString()] = hWnd;
        return true;
    }, 0);

    return lWindows;
}

public delegate bool EnumDelegate(IntPtr hWnd, int lParam);
public delegate bool EnumedWindow(IntPtr handleWindow, ArrayList handles);

[DllImport("USER32.DLL")]
public static extern bool EnumWindows(EnumDelegate enumFunc, int lParam);

[DllImport("USER32.DLL")]
public static extern IntPtr GetShellWindow();

[DllImport("USER32.DLL")]
public static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);

[DllImport("USER32.DLL")]
public static extern int GetWindowTextLength(IntPtr hWnd);

[DllImport("USER32.DLL")]
public static extern bool IsWindowVisible(IntPtr hWnd);

[DllImport("user32.dll")]
public static extern bool SetForegroundWindow(IntPtr hWnd);

在 Selenium 页面代码中,我单击按钮启动 PlUpload 窗口并稍等片刻。(这在代码中没有显示)

然后我使用下面的代码查找所有打开的窗口

IDictionary<string, IntPtr> getOpenWindows = GetOpenWindows();

切换到 PlUpload 窗口(窗口名称因浏览器而异。请注意!)

IntPtr hWnd = getOpenWindows["File Upload"];
SetForegroundWindow(hWnd);

输入文件的路径

SendKeys.SendWait(filename);

按回车

SendKeys.SendWait(@"{Enter}");

PlUpload 窗口将关闭,因此我们切换回浏览器窗口(在本例中为 Firefox)

hWnd = getOpenWindows["Mozilla Firefox"];
SetForegroundWindow(hWnd);

这有几个问题,因为窗口标题会根据所使用的浏览器而有所不同,因此需要考虑到这一点以获得完整的解决方案。此外,当这部分代码正在执行时,不要将任何其他窗口置于前台,因为此窗口将接收“SendKeys”而不是所需的窗口。

于 2014-07-29T10:09:22.237 回答