When i try to find the Ui Element through UiExplorer. i got like this
html app=‘chrome.exe’ title=‘* - Transac*’
webctrl aaname=‘Female’ parentid=‘TAB_PERSONAL__SEC_1__PART1__FST_BASIC’ tag=‘LABEL’ class=‘LBLauto’
The control which i want to find and click is a radiobutton which had gender values (ex Male, Female) and i am passing the gender value in a string to the selector like this
html app=‘chrome.exe’ title=‘* - Transac*’
webctrl aaname=‘“+ gender +”’ parentid=‘TAB_PERSONAL__SEC_1__PART1__FST_BASIC’ tag=‘LABEL’ class=‘LBLauto’
In my log message i am getting the selector properly with the gender value what i specified in the variable. But when it comes to click activity to select the radiobutton, its throwing error as
“Attribute not supported by the current UiNode”. Please help me to solve this issue.