HealthAutomate
9 years agoOccasional Contributor
Click action based on Object property
Hi There,
Hope you can help me with a solution as I am quite new to TestComplete.
I am using a keyword test where the script is being run across two environments. I am trying to achieve below points.
- To run same script across both environment based on object property.
- Use if statement to perform the action based on its value.
Eg: Environment1 has a link with an image as Item[104] but Environment2 has a link with an image as Item[107], this is because one environment has more link than the other one and its location is slightly changed.
Ideally I want to do something like below:
Find object value first.
If (ObjectValue =104)
Click 104
else
Click 107
Appreciate any help and guidance.
Thanks
Hi,
You can do a conditional name mapping for your object. Like a:
Aliases.YourObject :: YourObjectProperty == "104" or "107"