You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
while script runs:
code i used:
await dropDown({ id: ${globalDashboard.scheduleLoc()}}).select({ index: 1 });
devtools:
Any suggestions Please
The text was updated successfully, but these errors were encountered:
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');
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!
while script runs:
code i used:
await dropDown({ id:
${globalDashboard.scheduleLoc()}
}).select({ index: 1 });devtools:
Any suggestions Please
The text was updated successfully, but these errors were encountered: