The page where I'm trying to get information from, have a table and each row of that table have a link to the details of that row, that's the information that I'm trying to get, the table looks something like this:
Because it would be really slow to open the links one by one I want to do it in parallel (I already have an idea of how to do it), what I want to do is open multiple chrome windows and in each of these windows click the link to the details page of each row and then retrieve the information.
Before getting this table I need to login, once you login you can visualize the table, I don't want to login in each webdriver because that would be really slow.
Let's say the url for this page is "www.example.com/table" and when you open a new tab and use that link in the same browser it let you visualize the table without login again and since selenium can't handle multiple tabs at the same time this will not work, and the problem is that every time you open a new selenium webdriver it doesn't save the last session information, so I need to log in again and that's why I want to reuse or duplicate the same session information in each webdriver, I already tried to save the cookies and then reuse them in the new webdriver but it doesn't work.
Here's a similar question but here it uses the same webdriver and what i want to do is use multiple webdrivers but with the same session information: How to reuse a selenium browser session
Any idea of how I can duplicate a webdriver or reuse it with the session information of the last one or if there's any other solution?