자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

Chrome [vb.net] IWebDriver chrome.exe 지정 및 user data, profile 경로 지정하기

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 3,069회 작성일 22-10-09 22:54

본문

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"가 적용이 됩니다.

댓글목록

등록된 댓글이 없습니다.