Documentation and Books

Recent site activity

SeleniumIDE‎ > ‎

How to to store information from a field in a variable and use it somewhere else?

You can do this in the following way:

To store a value in a variable (this is directly in the selenium script:

  <tr>
<td>storeValue</td>
<td>kvknummer</td>
<td>kvknummer</td>
</tr>

To use it you can do the following (this is directly in the selenium script:

  <tr>
<td>type</td>
<td>kvkNummer</td>
<td>${kvknummer}</td>
</tr>

To use it directly in the IDE you can read the commands above as follow:

  <tr>
<td>{command}</td>
<td>{target}</td>
<td>{value}</td>
</tr>