본문 바로가기
SELENIUM/VBA

Chrome에서 자동 테스트 소프트웨어에 의해 제어되는 숨기기

by 에버리치60 2023. 12. 9.
Dim SD As New Selenium.WebDriver
Public Sub sample()
  
    'Chrome에서 자동 테스트 소프트웨어에 의해 제어되고 있습니다 숨기기
    SD.SetCapability "goog:chromeOptions", "{'excludeSwitches':['enable-automation']}"
     
    '브라우저 시작
    driver.Start "chrome"
    
    driver.Get "https://calligr.kr/"
 
End Sub