C# Selenium 2 测试规范链接
我正在使用 Selenium 2.0,我想测试正在测试的正确规范链接。我如何使用 c# 中的 webdriver 获得这个?
类似于:WebDriver.FindElementByName("head").FindElement(By.Rel....
<head>
<link href="http://www.test.com/canonical" rel="canonical" />
<link href="/Content/Reset.css" rel="stylesheet" type="text/css" />
<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
...
I'm using Selenium 2.0 and I want to test the correct canonical link is being tested. How would I get this using the webdriver in c#?
Something like: WebDriver.FindElementByName("head").FindElement(By.Rel....
<head>
<link href="http://www.test.com/canonical" rel="canonical" />
<link href="/Content/Reset.css" rel="stylesheet" type="text/css" />
<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有具体尝试过,但我可能会这样处理:
我唯一要注意的是,在下面查找元素可能会出现问题。
I haven't tried this specifically, but I'd probably approach it like this:
The only thing I'd caution about is that finding elements under may be problematic.