Chrome [vb.net] IWebDriver chrome.exe 지정 및 user data, profile 경로 지정하기
페이지 정보
본문
CHROME_PATH 경로에 chrome.exe가 존재하면 chrome 경로를 설정하고 그 하위 폴더에 user_data_dir을 지정합니다.
CHROME_PATH 경로에 chrome.exe가 존재하지 않으면 CHROME_PATH 가 "--user-data-dir"이 됩니다
Dim profile_path As String = nhnID
Dim user_data_path As String = ""
If File.Exists(Path.Combine(CHROME_PATH, "chrome.exe")) Then
chromeOptions.BinaryLocation = Path.Combine(CHROME_PATH, "chrome.exe")
user_data_path = CHROME_PATH & "\user_data_path"
End If
chromeOptions.AddArgument("--user-data-dir=" + user_data_path)
chromeOptions.AddArgument("--profile-directory=" & profile_path)
※ "--user-data-dir"이 지정 되어 있어야 원하는 경로에 "--profile-directory"가 적용이 됩니다.
- 이전글Chrome webdriver Headless모드 24.01.09
- 다음글[vb.net] Selenium WebDriver에서 AddCookie를 이용한 다른 브라우저에서 가져온 쿠키 적용하기 22.10.04
댓글목록
등록된 댓글이 없습니다.