Loop over an URL and I always get the same text the first one scraped

Hi All,

I am having an issue where I perform a “Get Row Item” on separate URLs from an Extracted Data Table. After each iteration of the loop, the content in the “Get Row Item” is the same each time. I can’t seem to figure it out.

Anyone could help me here? Attached is my workflow.
Chrome_Scrape_JobName&JobURL.xaml (14.6 KB)

1 Like

Good evening @redbee

It looks like you’re never moving past the first row, I believe you may want to use a “For Each Row” activity instead of “Do While”.

If you’d like to continue using “Do While”, you’ll need to increment your Counter variable by +1 at the end of each loop.

2 Likes

Good answer @chenderson

I saw the workflow and I got the same conclusion, you need an increment into the counter. (i.e. use an asign activity and setting counter = counter + 1) . But the better option to work with each row into a datatable is the For Each Row activity.

Regards,

Andres

3 Likes

Thank you both

2 Likes

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