Open guidetuanhp opened 2 years ago
Example when I run 10 thread. Sometimes on 1 thread, chrome started but it was stopped and not run more, other thread was still running.
same but , also , chrome does not start
Could please post some code to reproduce the issue. Are you sure you've updated undetected chromedriver ?
Could please post some code to reproduce the issue. Are you sure you've updated undetected chromedriver ?
`import undetected_chromedriver as chrome from concurrent.futures import ThreadPoolExecutor def create(data, i):
if name == 'main': pool = ThreadPoolExecutor(max_workers=10) for i in range(50): data = '' pool.submit(create, data, i) time.sleep(4)
`
That doesn't help at all :(
Example when I run 10 thread. Sometimes on 1 thread, chrome started but it was stopped and not run more, other thread was still running.