我想打开一个新的Chrome驱动程序会话与选定的配置文件“配置文件1”。但我也想保持其他Chrome窗口/会话打开(其中有默认的配置文件)。
我尝试了这段代码,它正确地打开了新的Chrome窗口,并与“配置文件1”,因为我想要的。但我然后得到以下错误的VBA。
Private Sub Use_Chrome_With_Custom_profile_name()
' Profiles folder : %APPDATA%\Google\Chrome\Profiles
' Note that with Chrome the profile is always persistant
Dim driver As New ChromeDriver
driver.AddArgument "--user-data-dir=C:\Users\user1\AppData\Local\Google\Chrome\User Data"
driver.AddArgument "--profile-directory=Profile 1"
driver.Get "https://www.google.co.uk"
driver.Quit
End Sub
如果我跳过(注解)这一行,那么Chrome不会打开配置文件1:
'driver.AddArgument "--user-data-dir=C:\Users\user1\AppData\Local\Google\Chrome\User Data"
1条答案
按热度按时间db2dz4w81#
试试这个: