Not able to type into specific row of a column

Hello ,
image
For the above image in column “Curve” i have to type the value “Linear”.
so for that i am looping the column rows with counter .
I am able to type into every single row except the 4th one ,its not even highlighting or validating for TableRow=4 .
below is the image of the selector both selectors
Strict selector:


Fuzzy Selector:

As I am new to UiPath ,any help would be appreciated.
Thanks in Advance

Hi @anchandela

  1. Once check whether your 4th row is hidden or having any formula for that
  2. Or else once check with new Sheet or new Excel
1 Like

@vinitha_yachamaneni

*Try enabling the “SimulateType” property in the “Type Into” activity. This can sometimes help with typing into certain types of fields.
*Use the UiPath Studio debugging features to step through your workflow and inspect variables, selectors, and the application state at runtime.

Cheers!!

1 Like

Thanks for the help

I tried the mentioned point, when i use simulateType it’s clearing the text box completely.
There are no hidden rows for this one .

@anchandela

Once try by Increaseing the timeout settings in your activities to allow more time for the element to be located. You can also use the “Retry Scope” activity to retry the typing operation in case of a failure.

even after giving the wait time for the activities the error is still there and it’s skipping the 4th row and not typing.

Hi @anchandela

Run in Debug mode and check in the local panel and see what’s the issue is there

I think the issue was with the website only as i was not able to highlight the element. I used element exist activity to check if it’s visible or not with if else loop .If the element is not found then then i am just giving
send hotkey(Enter) without any selector - with this it will go to 4th column
type into activity without selector so it will do the job for 4th column.

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