I want to make 10 requests to https://www.google.com/ but with random user agents using selenium and python. I\'ve a loop and inside that loop I\'m making 10 requests with r
it open 10 chrome instance because you did notclose() it, try
close()
... ... driver1.get('https://www.whatsmyua.info/') time.sleep(5) driver1.close()