gigacodr

Results 7 comments of gigacodr

Try this: Copy the raw text from this file: https://bootstrap.pypa.io/get-pip.py Save it as a python file (get-pip.py) Open the cmd window by typing 'cmd' inside of the current directory that...

Hey @JenoKey , from the code you have shown, I can say that this is happening because you do not have a sleep() function or anything else after the script...

@JenoKey , an alternative would be: ``` import time from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.by import By import undetected_chromedriver as uc chrome_options = uc.ChromeOptions() chrome_options.add_experimental_option("detach", True)...

> @JenoKey @wazoooo I'm getting an error `unrecognized chrome option: detach` I tried with Chrome version 105. Am I missing something? Thanks Try the following: `chrome_options.set_capability("detach", True)`

@afan441524641 To answer you question: Like @sebdelsol has mentioned in another issue, https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/789#issuecomment-1222283514 The reason for this is that every time you terminate the script using your IDE, chromedriver does...

Hey @RexSalazar77 , `driver.quit()` is the function you should be using to terminate properly. Here is some more information on this issue: https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/793#issuecomment-1255736732

chrome_options.add_argument('--password-store=basic') Change the password-store setting to your liking.