Dynamic Url
Thank you to the Smearbear Support group for helping me move forward
I have couple of questions, hope some one can answer them π and thank you very much.
I want to use the same keyword test I have recorded for one environment (whose url looks like https://aa.abc.avista.edu/GRT/page)
in mutiple environments
this is how the urls looks in different environments
https://aa.abc.avista.edu/GRT/page
https://bb.abc.avista.edu/GRT/page
https://cc.abc.avista.edu/GRT/page
Q1) I have changed the navigate chrome browser value to https://*/GRT/page, but I am getting an error
This site canβt be reached
https://%2A/GRT/page
while running my keyword test
Q2) There are many objects that got recorded in the keyword script
eg: textusername, passwordbox, formloginform, link etc
each object has a property 'baseurl' value as 'https://aa.abc.avista.edu/GRT/page' under namemapping window
Do I have to edit the baseurl for each object to something like this
baseurl: https://*/GRT/page
for my keyword test to work on different urls? or is there a common area I can tell to use baseurl as https://*/GRT/page
for all the objects in the test?
Take a look at the Name Mapping section in here. You need your name mapping to be able to understand all those URLs.
https://support.smartbear.com/testcomplete/docs/reference/misc/using-wildcards.html
Hi,
Personally I would do it this way:
a) Create a string project variable of temporary type (with default value, say, https://aa.abc.avista.edu/GRT/page);
b) Depending on how you are going to execute your tests on another environments, consider how to assign the proper value to the above variable. Possible options: manually; from the command line as a custom parameter; read from configuration file; implement this or that data loop; etc.
c) Modify test code that starts browser and performs initial navigation so that the code uses the value of the above temporary project variable (which, by that moment, must contain correct value);
d) Revise NameMapping and remove site URL from the list of identification parameters for as many objects as possible. Investigate your tested application and find other unique, static and stable properties that can be used for this or that object identification and adjust NameMapping appropriately;
e) For the objects where URL as an identification parameter is required or highly desirable (can't think about anything else but Page), edit its identification parameters so that instead of static hardcoded value this parameter referenced the abovementioned project variable.