gauge icon indicating copy to clipboard operation
gauge copied to clipboard

Selected option is not working as expected in Dropdown

Open poornadeem opened this issue 3 years ago • 1 comments

After selecting the value from dropdown, selected value will trigger the other values to shown up. but currently i dont see those options .Manually its working fine as expected onceon is selected,ideally it should be!

image

while script runs: image

code i used: await dropDown({ id: ${globalDashboard.scheduleLoc()}}).select({ index: 1 });

devtools: image

Any suggestions Please

poornadeem avatar Nov 18 '21 06:11 poornadeem

I had the same issue. I did a workaround on it. After the selection using select, i did focus on the dropdown and trigger "Enter" using keyboard. e.g await dropDown({ id: ${globalDashboard.scheduleLoc()}}).select({ index: 1 }) await focus(dropDown({ id: ${globalDashboard.scheduleLoc()}})); await press('Enter');

dvag-sunil avatar Jan 13 '22 11:01 dvag-sunil