扩展 selenium2 功能 PageFactory

发布于 2024-11-26 02:37:00 字数 404 浏览 2 评论 0原文

我想向 selenium2 PageFactory 添加功能。我想要的是 FindsByAttributeSelectedElement 兼容。 我发现的问题是,如果我将 SelectElement 类型的属性添加到 IWrapsElement 中并在 ProxiedWebElementInterceptor 中实现它。当调用该字段的方法 SetValue 时,他说“‘Castle.Proxies.INewsWrapsElementProxy’类型的对象无法转换为‘OpenQA.Selenium.Support.UI.SelectElement’类型。” 有人可以解释一下城堡代理返回所需值的机制吗?

I want to add a functionality to selenium2 PageFactory. What I want is that FindsByAttribute was compatible with SelectedElement.
The problem that I discovered that if I'm adding property with SelectElement type into IWrapsElement and implementing it in ProxiedWebElementInterceptor. When method SetValue of the filed is called he says " Object of type 'Castle.Proxies.INewsWrapsElementProxy' cannot be converted to type 'OpenQA.Selenium.Support.UI.SelectElement'."
Could some one explain castle proxy's mechanism that returns needed value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的心境我的脸 2024-12-03 02:37:00

试试这个

// Presumed to be in Page class
[FindsBy(How = How.Id, Using = "ButtonId")]
public IWebElement submitButton { get; set; }

// Presumed to be in Helpers class
public void ScrollToElementOnPage(IWrapsElement element) 
{ 
   var js = driver as IJavaScriptExecutor;
return  js.ExecuteScript("arguments[0].scrollIntoView(true);",element.WrappedElement);
}

Helpers _helpers = new Helpers();
Page _page = new Page();
_helpers.ScrollToElementOnPage((IWrapsElement)_page.submitButton);

Try this

// Presumed to be in Page class
[FindsBy(How = How.Id, Using = "ButtonId")]
public IWebElement submitButton { get; set; }

// Presumed to be in Helpers class
public void ScrollToElementOnPage(IWrapsElement element) 
{ 
   var js = driver as IJavaScriptExecutor;
return  js.ExecuteScript("arguments[0].scrollIntoView(true);",element.WrappedElement);
}

Helpers _helpers = new Helpers();
Page _page = new Page();
_helpers.ScrollToElementOnPage((IWrapsElement)_page.submitButton);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文