How to set a global Base URL for every test case of one test suite in Selenium IDE so that I can switch to different environment easily?
|
If you have a lot of test cases in a single suite, it's a pain to change the Base URL for each. Instead, create a separate case for each Base URL you need to switch between. For example, I have Then, insert the Edit: Example of using a SetEnvironment test case. The SetEnvironment case:
An example of a following test case.
Notice
I hope that's helpful! |
||||
|
The test case HTML file is responsible for setting the base URL. From the Selenium IDE, you can override the base URL for a test case. A test suite, on the other hand, is only a bag for your test cases. Remove the base URL setting from each of the test case files referenced from your test suite. Then set the base URL by hand for the test suite and run the suite. The line in question is in the head of each test case file:
If it is missing, then the base URL overrides it automatically. |
||||
|
|
|
I just created a separate test and put it at the top of all tests. Store the base url to an variable and now I am able to access it in other test cases by ${variable_name}. |
|||||||
|
|
I found it exceedingly frustrating that I couldn't just have a blank Base URL and have it use whatever page I already had open as the start of the test. What is the point of being able to record relative URLs when it forces you to hardcode a base url that is prefixed to every relative url (thus turning them into absoulte urls)?? Extending on the other answers and from this question: In Selenium IDE, how to get the value of the base url You can store the current domain in a variable and then use that instead of a hard coded one. This lets you login to the server you want to run the tests on, hit play and it will run the tests without all this baseURL nonsense redirecting you to the wrong server. Just use these commands at the start of the first script in your suite:
And keep using the |
|||
|
|
|
I tried the accepted answer, it does work for selenium IDE, but it does not work when running stand-alone server. finally, I put the value inside the user-extensions.js , and use storeEval to get the value back. Then the same value could be retrieved inside different cases. |
|||
|
|


