I wondered if it was possible to query multiple target urls at the same time in Python Selenium. My current code looks like the below which just calls one Url:
My body of code currently works and brings back the data I require. Am I able to call multiple URL's at same time. For example,
Target = ['https://www.skadden.com/professionals?skip=0&position=64063c2e-9576-4f66-91fa-166f4bede9b8&hassearched=true','https://www.skadden.com/professionals?skip=0&position=f1c78f66-a0a6-45e5-8d22-541bd65bb325&hassearched=true']
I have tried this code and it doesn't work. Any ideas?
Thanks
Chris