7

我目前正在使用 Selenium WebDriver 2.35,在截屏时遇到了障碍。我编写了一个小函数,它接受一个 IWebElement 并返回特定元素的屏幕截图。我要截屏的元素实际上是从精灵中提取的图像。但是这个元素很棘手,因为在鼠标悬停/悬停时,图像会从灰色变为真实颜色(通过移动到精灵的不同部分)。我可以通过此功能获得图像的正确屏幕截图,但无法识别鼠标与 ITakesScreenshot 的交互。我可以在浏览器中直观地看到图像悬停在上面,但屏幕截图不能。有什么想法吗?

    public static Bitmap GetImage(IWebElement element)
    {
        RemoteWebDriver driver = BrowserManager.GetInstance().GetDriver();
        Actions action = new Actions(driver);

        //take screenshot of page
        action.MoveToElement(element).Build().Perform();
        Byte[] ba= ((ITakesScreenshot)driver).GetScreenshot().AsByteArray;
        Bitmap ss = new Bitmap(new MemoryStream(ba)); 
        //ss.Save("c:\\tmp\\ss.png", ImageFormat.Png);

        Rectangle crop = new Rectangle(element.Location.X, element.Location.Y, element.Size.Width, element.Size.Height);

        //create a new image by cropping the original screenshot
        Bitmap image = ss.Clone(crop, ss.PixelFormat);
        return image;
    }
4

2 回答 2

0

根据我的经验,通过 Selenium Grid 的自动化,看不到鼠标。也许这是因为“鼠标”实际上是一个虚拟 Selenium 鼠标,并且未连接到系统本机鼠标驱动程序。

于 2013-11-13T22:26:20.337 回答
0

似乎最新的硒(2.39)已经解决了这个问题,我可以在这个截图方法中看到鼠标悬停。感谢大家的帮助!

于 2014-01-14T17:07:46.527 回答