我有元素

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()的操作吗?

最佳答案

为了打开使用透明代理的元素,您可以使用具有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();


我希望答案能帮助您解决问题:)

07-26 09:29