Hi @bplives
I discovered that you can access the different pages of employee data by using the URL parameter page so adding page=2 gives you the 2nd page of data, etc. No need to try to find links to click on the page, just load the appropriate URL.
With this flow you can load the company page then load each page of employees. I haven't got any steps for scraping data, you can add those in.

There are 2 variables. PageNum controls the page of search results to load. Continue determines if the last page of results has been reached.
Initially you load https://www.linkedin.com/search/results/people/?keywords=samtec inc&origin=CLUSTER_EXPANSION which is the first page of employee data.
You need to add your steps between my Steps 5 and 6 to scrape the data you want.
The PageNum is then increased and the next page loaded with this URL https://www.linkedin.com/search/results/people/?keywords=samtec inc&origin=CLUSTER_EXPANSION&page=%PageNum%
If this next page contains the text No results found then there's no more data and the variable Continue is set to false - this ends the scraping loop, and ends the flow.
Good luck.
Phil
is a that control