3

我有元素

public ArticlePage()
{
    PageFactory.InitElements(Browser.driver, this)
}

[FindsBy(How = How.Id, Using = "someId")]
private IWebElement btnTitleView { get; set; }

和行动

Actions action = new Actions(Browser.driver);
action.MoveToElement(btnTitleView).Perform();

但是当我尝试运行它时,我会得到错误

'System.Reflection.TargetException' 对象与目标类型不匹配。

我试图找到这个元素Browser.driver.FindElement(By.Id("someId")),然后它可以正常工作。因此,它存在并显示。
是否可以使用透明代理来执行Actions?有没有其他方法可以MoveToElement()对透明代理执行类似的操作?

4

2 回答 2

2

解决此问题的一种方法是使用IList<IWebElement>而不是使用foreachLINQ操作元素。所以你可以使用:

[FindsBy(How = How.Id, Using = "someId")]
private IList<IWebElement btnTitleView { get; set; }
...

Actions action = new Actions(Browser.driver);
action.MoveToElement(btnTitleView.First()).Perform();

或者

foreach (var element in btnTitleView)
{
   Actions action = new Actions(Browser.driver);
   action.MoveToElement(element).Perform();
}
于 2016-10-18T12:42:52.010 回答
2

为了解开使用透明代理的元素,您可以使用IWrapsElement具有WrappedElement属性的接口:

action.MoveToElement(((IWrapsElement)btnTitleView).WrappedElement).Build().Perform();

您可能还希望将该强制转换作为IWebElement对象的扩展方法包含在内:

public static class IWebElementExtensions
{
    public static IWebElement Unwrap(this IWebElement element)
    {
        return ((IWrapsElement)element).WrappedElement;
    }
}

然后您的操作代码可能如下所示:

Actions action = new Actions(Browser.driver);
action.MoveToElement(btnTitleView.Unwrap()).Build().Perform();

我希望这个答案能帮助你解决你的问题:)

于 2017-08-22T11:42:55.377 回答