AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath' 위와 같은 에러가 난다면 현재 xpath사용법이 바뀌어서 그렇습니다. (X) element = driver.find_element_by_xpath('//*[@id="content"]/div[1]') (O) from selenium.webdriver.common.by import By element = driver.find_element(By.XPATH, '//*[@id="content"]/div[1]') selenium 4.18.1 기준 위의 코드로 바꿔주시면 잘 작동될것입니다.
AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'
AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath' 위와 같은 에러가 난다면 현재 xpath사용법이 바뀌어서 그렇습니다. (X) element = driver.find_element_by_xpath('//*[@id="content"]/div[1]') (O) from selenium.webdriver.common.by import By element = driver.find_element(By.XPATH, '//*[@id="content"]/div[1]') selenium 4.18.1 기준 위의 코드로 바꿔주시면 잘 작동될것입니다.
2024.03.23