使用 Selenium2,如何检查页面上是否存在某些文本?
我正在使用 C# Selenium WebDriver,我想确认页面上是否存在某些文本。
我该怎么做?所有选择器似乎都使用 ID、类等。我不关心文本在页面上的位置,我只想确保它存在于页面上的某个地方。
有什么想法吗?
PS:我可以使用 JQuery 和 Javascript 来做到这一点,但显然并非所有浏览器驱动程序都支持:
protected bool TextIsOnThePage(string textToFind)
{
var javascriptExecutor = ((IJavaScriptExecutor)_driver);
bool textFound = Convert.ToBoolean(javascriptExecutor.ExecuteScript(string.Format("return $('*:contains(\"{0}\")').length > 0", textToFind)));
return textFound;
}
I am using the C# Selenium WebDriver and I would like to confirm that certain text exists on the page.
How do I do this? All the selectors seem to use IDs, Classes etc. I don't care where the text is on the page, I just want to make sure it exists somewhere on the page.
Any thoughts?
PS: I can do this using JQuery and Javascript, but apparently that's not supported in all browser drivers:
protected bool TextIsOnThePage(string textToFind)
{
var javascriptExecutor = ((IJavaScriptExecutor)_driver);
bool textFound = Convert.ToBoolean(javascriptExecutor.ExecuteScript(string.Format("return $('*:contains(\"{0}\")').length > 0", textToFind)));
return textFound;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
或者找到一个特定的 div
或者您可以使用 Selenium 类 WebDriverBasedSelenium 并执行类似的操作
or find a speific div
or you can use the Selenium class WebDriverBasedSelenium and do something like
这是使用 Selenium WebDriver 2.48.0 的更新版本
注意:断言是 Nunit 断言,显然,您可以使用您喜欢的任何断言方法。在本示例中,我还使用了 RemoteWebDriver 和 Firefox。
Here's an updated version using Selenium WebDriver 2.48.0
Note: The Assert is an Nunit assert, you can obviously use whichever assertion method you prefer. I'm also using the RemoteWebDriver and Firefox for this example.
您应该能够通过检查
的内部文本来实现此目的。
You should be able to achieve this by checking the inner text of
<body />
.在java中你可以这样做:
booleanwhat = driver.getPageSource().contains("Whatever you try to find");
In java you do it like so:
boolean whatever = driver.getPageSource().contains("Whatever your trying to find");
我发现最简单的事情就是搜索课程
Easiest thing I found was to search for a class