Parsing URL for querystring values with Selenium IDE - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T18:44:46Z http://stackoverflow.com/feeds/question/1375841 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide 2 Parsing URL for querystring values with Selenium IDE Bayard Randel http://stackoverflow.com/users/68742 2009-09-03T20:44:18Z 2009-09-04T11:19:48Z <p>I'm new to integration testing, but have had great success so far buiding up a suite of tests using Se:IDE. As I've been running my tests, it has occurred to me that I'm generating a substantial amount of data and I'd like to clean up after myself.</p> <p>Most of my tests involve creating a new 'page', and the id is available in the querystring. I'd like to have Se:IDE store a querystring value and pass it to another page that calls a delete method to tidy up after I have run my verifications.</p> <p>I see that I can use the command storeLocation, but I'm not sure how I would go about parsing that value for the id in the querystring, and then pass it to another page using Open.</p> <p>Have I reached the point where I need to migrate my tests to c#, or is this possible using the IDE?</p> http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide/1376110#1376110 2 Answer by Santi for Parsing URL for querystring values with Selenium IDE Santi http://stackoverflow.com/users/154163 2009-09-03T21:38:29Z 2009-09-04T03:23:09Z <p>If you keep all your test cases inside the same test suite. They can share variables between executions without problems. So, all you have to do is to store the desired value:</p> <pre><code>storeLocation | variable | | </code></pre> <p>and in a future test, you have to use the variable as the following:</p> <pre><code>open | ${variable} | | </code></pre> <p>Note: for more info on test suites, take a look at: <a href="http://seleniumhq.org/docs/03%5Fselenium%5Fide.html#writing-a-test-suite" rel="nofollow">http://seleniumhq.org/docs/03%5Fselenium%5Fide.html#writing-a-test-suite</a></p> <p>Update:</p> <p>You can now use javascript regular expressions to get a substring from a variable:</p> <pre><code>storeEval | reg = /substring pattern/;reg.exec(${variable}) | substring open | ${substring} | | </code></pre> <p><strong>Example</strong>:</p> <pre><code>store | "012la4la" | a storeEval | re = /[0-3]*la/;re.exec(${a}) | new echo | ${new} | </code></pre> <p><em>output</em>: </p> <pre><code>[info] echo: 012la </code></pre> http://stackoverflow.com/questions/1375841/parsing-url-for-querystring-values-with-selenium-ide/1376262#1376262 1 Answer by Dave Hunt for Parsing URL for querystring values with Selenium IDE Dave Hunt http://stackoverflow.com/users/154975 2009-09-03T22:16:53Z 2009-09-04T11:19:48Z <p>A quick example for extracting an id parameter from a query string would be:</p> <pre><code>storeLocation | myLocation store | javascript{ storedVars['myLocation'].substring(storedVars['myLocation'].indexOf('id=')+3, storedVars['myLocation'].length); } | idValue </code></pre> <p>This assumes that the id parameter is the last in the query string. If it's not then you might be best splitting the location on '&amp;' and looping through the resulting array for the 'id' parameter value.</p>