In following html
<p>
<strong>Name:</strong>
12121
</p>
How can I access the "12121" text using Watir?
|
In following html
How can I access the "12121" text using Watir? |
|||||||
|
|
To get
|
|||||||||
|
|
To get subtext 12121 use Regular expressions.
|
||||
|
|
|
While I think that parsing the paragraph elements text is the easiest, if you really just want to get the text node, you could use javascript. If you know that the text will always be the last part of the paragraph, you can do:
If the structure can change and you want all text of the paragraph element, without the children element's text, you can generalize it:
|
|||
|
|