chrome 업데이트 후 selenium으로 스크립트 돌릴 때 동작을 안하는 경우가 있었다.
> chrome driver 버전 확인
> chrome 옵션 확인
> 추가 options.add_argument("--disable-search-engine-choice-screen")
def getDriver():
logger.logging(msg='Start Util')
options = webdriver.ChromeOptions()
if not dev:
options.add_argument("--headless=new")
logger.logging(msg='Chrome option setting')
options.add_experimental_option('excludeSwitches', ['enable-logging'])
options.add_argument("--window-size=1920,1080")
options.add_argument("--disable-search-engine-choice-screen") #24.09.02 추가
chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0]
'QA' 카테고리의 다른 글
1.2 테스팅이 왜 필요한가? Why is Testing Necessary? (0) | 2024.04.16 |
---|---|
오...지라 (0) | 2024.01.18 |
소프트웨어 테스팅 용어집(영어) (1) | 2023.10.05 |
QA 로드맵 (0) | 2023.06.21 |