Dianne
unread,Aug 8, 2007, 9:51:12 AM8/8/07Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to selenium-users...@googlegroups.com
I believe you want to use one of the "store" commands to store the text from the page into a variable and then when your script moves to the next page, use the "type" command with your variable.
Here's an example that pulls the value from the "username" field of the page, stores it in the variable named var_username_to_type, and then puts it in the "newfield" field of the next page:
storeValue | username | var_username_to_type
{code:html}<commands to click to next page>{code}
type | newfield | ${var_username_to_type}
Look up the "store" commands in the reference manual as there are various options to store (storeTable, storeText, storeValue, etc.)
I hope that helps.
Dianne
Message was edited by: ddaims (additional info for clarity)