728x90
from selenium import webdriver
from bs4 import BeautifulSoup
from selenium.webdriver.common.by import By
driver = webdriver.Chrome('./chrome.exe')
위의 코드에서 에러 발생..!
https://stackoverflow.com/questions/40555930/selenium-chromedriver-executable-needs-to-be-in-path
여러 해결 방법들이 있었지만 내 코드에서 정상적으로 작동하지 않았다.
그래서 Chrom()으로 chrom 창을 열고 URL을 넣어 사용하기로 했다.
from selenium import webdriver
from bs4 import BeautifulSoup
from selenium.webdriver.common.by import By
# chrome driver path
driver = webdriver.Chrome()
driver.implicitly_wait(30)
driver.get('https://www.google.com/')
728x90