How to select this one

i should select the pending work order in the below showing img some times the pending work order is hides like we should scroll down and select that pending work order.

uipath115221

once we select the pending work order the show details button will highlighted we will click

uipath115222

Use Ui Explorer to click the row and show us the selector.

Can you use Select Item activity?

Or depending on the availability of the data, I would suggest use Get Text - then check if your option is found using regex.

If it is not found - then scroll down X times to show new values, then repeat until it is found etc.

Hi @postwick , here you can see

Hello,

Have you tried enabling ‘Simulate Click’ property? Even if its hidden, the bot might click it if the property is enabled.

Thanks!
Athira

Use a Click activity using Simulate, and set the third line of the selector to…

<ctrl name='Pending work order*'>

The * is a wildcard that means the text after “Pending work order” can be anything.

yes I did but it didn’t work,

some times pending work order is hides like this

uipath115224

hi , yes i did but it didn’t work

Did you set the Click to Simulate?

image

Just to confirm, you edited the selector and put the * into it?

Assuming you did, try SendWindowMessages instead of SimulateClick.

1 Like

You can use “send hotkey” also in this case , just try to analyze after how many “tabs press” that value is coming , and u can use while loop to make it count that much time

try this and let me know

1 Like

It’s probably not going to be in the same position every time.

1 Like

yes i put *

okay will try send window

@postwick getting this error while using window
uipath115227

OK this element doesn’t like SendWindowMessages.

Try the Set Focus activity (with the same selector as the click) and see if that makes it scroll to the correct row.

If not, you’ll have to employ some logic to try the click and if it fails, click the scrollbar (or PgDwn if that works) and then try the click again.

1 Like

@postwick

set focus is working

1 Like

Hello @meeraa

Is it resolved??

1 Like

yes @Rahul_Unnikrishnan

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.