请不要将此标记为重复首先正确阅读我的问题..
这是我的代码:
options = webdriver.ChromeOptions()
options.add_argument(r"--user-data-dir=C:\\Users\\Pranil.DESKTOP-TLQKP4G.000\\AppData\\Local\\Google\\Chrome\\User Data")
options.add_argument(r'--profile-directory=Profile 1')
browser = webdriver.Chrome(ChromeDriverManager().install(), options=options)
browser.get('https://web.whatsapp.com')
这是我得到的错误:
selenium.common.exceptions.InvalidArgumentException: Message: invalid argument: user data directory is already in use, please specify a unique value for --user-data-dir argument, or don't use --user-data-dir
问题是默认和配置文件 1 位于同一目录中的用户数据(创建新配置文件并不能解决上述答案中提到的问题)..所以如果我使用另一个带有“默认”的 chrome 选项卡运行此脚本在后台运行的配置文件出现此错误..如何确保此错误消失(在运行此脚本时,我无法使用默认配置文件关闭其他 chrome 选项卡)