Navigate To in for each

Hi all,

I am trying to navigate to pages of different items in the data table. However, I found that the robot can only navigate to the page of the first item in the data table. But if I used a message box to see if all the rows can be retrieved, all the row values can be shown.

I am wondering if there is anything missing in my procedures.

10

Hi,

In Navigate To activity why are passing rowdata1 when your item is “row”

HI @katylsy

You actually don’t need to use Get Row Item in the for each row activity. In the For Each Row ativity, the variable Row holds the current value which you need to pass for the url.

In you Navigate To try this:

In_System1URL+"Work-items/"+row("ColumnName").ToString 

This should work without any problem.

3 Likes

Hi,

When I removed the get row item and used In_System1URL+“Work-items/”+row.ToString, I got this instead of the row value. Anything missing?

11

Here is the procedure

12

@katylsy it’s returning row ,so you need to mention the column index from which you are reading the data.
Syntax: row.item(YourColumnIndex).tostring

1 Like

Try to use
In_System1URL+“Work-items/”+row(column indexnn no).ToString

2 Likes

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