I got an error running undetected_chromedriver.v2 as uc

Question:

import undetected_chromedriver.v2 as uc
driver = uc.Chrome()
driver.get('https://nowsecure.nl')

enter image description here

Asked By: dubleA

||

Answers:

You must add "use_subprocess=True" to closure like this:

import undetected_chromedriver.v2 as uc
driver = uc.Chrome(use_subprocess=True)
driver.get('https://nowsecure.nl')
Answered By: Lukáš Čimo

driver = uc.Chrome(use_subprocess=True)
When i try to use this.

I just got this error below!

TypeError: Chrome.init() got an unexpected keyword argument ‘use_subprocess’

Answered By: Shakil Max