asinchenko

Results 4 comments of asinchenko

import undetected_chromedriver.v2 as uc 1. Unpack your .crx file into default folder 2. opts = uc.ChromeOptions() 3. opts.add_argument("--load-extension=/Path/To/Your/Extention/Folder") 4. driver = uc.Chrome(options=opts)

> I actually had 2 extensions in my app. So it should be possible. Just try to add them one after another ``` "opts.add_argument("--load-extension=/Path/To/Your/Extention1/Folder")" "opts.add_argument("--load-extension=/Path/To/Your/Extention2/Folder")" ```

> Sorry for being a bit confusing. Sure, i did it, but unfortunately i can not find where my code is. I also suggest you to try this way: `opts.add_argument("--load-extension=/path/to/Extension/,/path/to/Extension2/")`

> Found some code. Which opens google chrome using undetected chromedriver. (only had to update webdriver to 108 version). I can share my code of init_driver function where i upload...