Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 15th, 2012  |  syntax: None  |  size: 0.58 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. XPATH to verify the existence of a text in the html
  2. <ul>
  3.    <li class="texto">
  4.       Warning, invalid login. The login <b> rafael1983 </ b> is already associated with a registered user.
  5.    </li>
  6. </ul>
  7.        
  8. //*[contains(child::text(), 'Warning, invalid login. The login rafael1983 is already associated with a registered user.')]
  9.        
  10. //*[contains(normalize-space(.), 'Warning, invalid login. The login rafael1983 is already associated with a registered user.')]
  11.        
  12. //li[contains(normalize-space(.), 'Warning, invalid login. The login rafael1983 is already associated with a registered user.')]