There's no isTextPresent in Selenium 2 (WebDriver)
What is the correct way to assert the existence of some text on a page with WebDriver?
|
|
|
I normally do something along the lines of:
|
|||||||
|
|
Page source contains HTML tags which might break your search text and result in false negatives. I found this solution works much like Selenium RC's isTextPresent API.
doing getText and then contains does have a performance trade-off. You might want to narrow down search tree by using a more specific WebElement. |
||||
|
|
|
I know this is a bit old, but I found a good answer here: Selenium 2.0 Web Driver: implementation of isTextPresent In Python, this looks like:
|
|||
|
|
|
Or if you want to actually check the text content of a WebElement you could do something like:
|
||||
|
|
|
Selenium2 Java Code for isTextPresent (Selenium IDE Code) in JUnit4
|
|||
|
|
|
I have written the following method:
The above method is called as below:
It is working nicely. |
|||||||||
|
|
The following code using Java in WebDriver should work:
|
|||
|
|
|
Testing if text is present in Ruby (a beginners approach) using firefox as target browser. 1) You need of course to download and run selenium server jar file with something like:
2) You need to install ruby, and in its bin folder, run commands to install additional gems:
3) create a file test-it.rb containing:
4) run ruby:
|
|||
|
|