I tried to run this code in python but got the following error:
TypeError: main.checkout() argument after * must be an iterable, not WebDriver
def checkout():
browser.get("https://google.com")
for i in range(5):
browserThread = threading.Thread(target = checkout, args = (webdriver.Chrome()))
browserThread.start()