Micro Focus QTP (UFT) Forums

Full Version: GMAIL Object Identification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In GMAIL Account Creation , In the Account Creation Page Can anyone tell the process of identifying "Month" object in the Birthday field?

I need to know the Descriptive programming Script for Setting the Birthday as 4th-February-1988 . The Day and year are fields are getting identified properly but the month Drop-down list is not getting identified . Need help. Many Many thanks in advance.
Use the xpath?
Just Try the below code its should work. I used Descriptive Programing statements and not need to use object repository

Code:
Browser("micclass:=Browser").Page("micclass:=Page").WebList("html id:=BirthMonth").Select "February"
Browser("micclass:=Browser").Page("micclass:=Page").WebEdit("html id:=BirthDay").Set "4"
Browser("micclass:=Browser").Page("micclass:=Page").WebEdit("html id:=BirthYear").Set "1988"