In my application I have two webelements having innertext as
1. veolia transport
2. Veolia Transport - (words V and T are uppercase here)
I have used below code to click the object that has innertext "Veolia Transport"
However I am getting an error saying "Description matches more than one object".
When I use below code then it is working,
How to make sure that object recognition considers case sesitive.
Note: I want to avoid index property.
Thanks in advance!!
Regards,
Sandeep.
1. veolia transport
2. Veolia Transport - (words V and T are uppercase here)
I have used below code to click the object that has innertext "Veolia Transport"
Code:
browser("index:=0").page("title:=.*").webelement("innertext:=Veolia Transport").Click
When I use below code then it is working,
Code:
browser("index:=0").page("title:=.*").webelement("innertext:=Veolia Transport","index:=1").Click
How to make sure that object recognition considers case sesitive.
Note: I want to avoid index property.
Thanks in advance!!
Regards,
Sandeep.