I have a selenium script that I created with Selenium IDE. I was
wondering if there is anyway to store the text that is in a certain
element in a variable so that I can use that text later in the script? I am using selenium IDE to do it and then importing it into browsermob.
For Example: I have this html:
<div id=title>
<h2>Website</h2>
<h3><span>web app</span>www.google.com</h3>
</div>
The text in the h3 (www.google.com) changes with different pages. I want a script to be able to run on all these pages that grabs the text in the h3 (in this case http://www.google.com), and stores it in a javascript variable which I can use in a later part of the script.
see How do you store an elements text with selenium in a javascript variable?