Selenium Webdriver python storeTextPresent -
how can perform storetextpresent in selenium webdriver python?
in selenium ide following code works:
storetextpresent regexp:[tt]ext test gotolf storedvars['test'] == true exists
source:
<tr> <td>storetextpresent</td> <td>regexp:[tt]ext</td> <td>test</td> </tr> <tr> <td>gotoif</td> <td>storedvars['test'] == true</td> <td>exists</td> </tr>
i want same thing selenium webdriver.
best regards.
i came solution!
self.assertregex(driver.find_element_by_class_name("classname").text,r"^[\s\s]*[tt]ext*$")
this command tests regex search matches (or not match) text. in case of failure, error message include pattern , text.
best regards.
Comments
Post a Comment