views:

94

answers:

2

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 www.google.com), and stores it in a javascript variable which I can use in a later part of the script.

+3  A: 

http://seleniumhq.org/docs/04_selenese_commands.html#store-commands-and-selenium-variables

Depending what exactly you are trying to do, the storeEval command may be of use. You should just be able to start the Xpath with // as the argument to the storeEval command (so that Selenium knows that you are referencing an Xpath rather than, say, a DOM element).

Andrew
I see... Thanks, the link was very helpful!
chromedude
@Andrew, how would you refrence the variable in the ${} after it is created? I want to grab the text in a certain area of the page and then later on in the script type that text.
chromedude
A: 

see http://bit.ly/c44bi0

chromedude