Hi ,
I have an object in the my OR and i perform action on it by using the following code,
. This works perfectly.
The above weblist has mandatory properties like html tag and name
However if I want to replace the Weblist name with its mandatory properties in the following format
The above code throws an error , Why is this happening ,
The error is Cannot identify the object "[Weblist]" (of calss Weblist). Verify that the Objects Properties Match an object currently in the application.
I have an object in the my OR and i perform action on it by using the following code,
Code:
browser("Welcome to").Page("Welcome to_2").Frame("Frame").WebList("profile").Select("2")
The above weblist has mandatory properties like html tag and name
However if I want to replace the Weblist name with its mandatory properties in the following format
Code:
browser("Welcome to").Page("Welcome to_2").Frame("Frame").WebList("name:= ccc1","html tag:= ttt1").Select("2")
There are multiple weblists in the page (namely ("name:= ccc1","name:= ccc2"),("name:= ccc3")," and I want to loop in these required objects and select item from the list
The error is Cannot identify the object "[Weblist]" (of calss Weblist). Verify that the Objects Properties Match an object currently in the application.