작성
·
743
·
수정됨
0
안녕하세요 강사님.
크롬드라이버를 따로 업데이트 하는 로직으로 구현해서 크롤링중입니다.
문제는 url을 호출해서 크롬이 열리면 오래전 구글 화면이 나옵니다. 결과도 물론 옛날꺼구요,, 아래 그림처럼 오른쪽 화면이 나옵니다.
드라이버를 업데이트 하는 방식이 아닌 다른 방식을 사용 했을 때 작동이 안되고 오류가 나기 때문에 이 방식으로 사용하고있었습니다.
일단 실행해서 작동하는 부분만 코드 첨부하겠습니다 ㅠㅠ
해결방안을 알려주세용..
드라이버를 다운받아서 하는 방식은 에러가 나기 때문에,, 크롬드라이버 업데이트 하는 방식으로 진행해야할것같습니다..
그리고 크롬드라이버를 업데이트 하는 방식은find_elements를 사용해야하는데
imgs = browser.find_elements(By.CSS_SELECTOR, '.rg_i.Q4LuWd')
해당 부분에서 .click을 지원하지 않는데 어떻게 해야할까요
아래 전체 코드 첨부합니다!
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import urllib.request
# 크롬 드라이버 자동 업데이트
from webdriver_manager.chrome import ChromeDriverManager
import time
import pyautogui
import os
# 브라우저 꺼짐 방지
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
# 크롬창 안뜨게 함
# chrome_options.add_argument('--headless') # headless 모드 활성화
# chrome_options.add_argument('--disable-gpu') # GPU 가속 비활성화
# Mozilla 웹 브라우저에서 온 것처럼 인식 / 자동화된 요청을 감지하고 차단하는 것을 우회
chrome_options.add_argument("--user-agent=Mozilla/5.0")
# 불필요 메세지 없애기
chrome_options.add_experimental_option("excludeSwitches", ["enable-logging"])
# 드라이버 업데이트
service = Service(executable_path=ChromeDriverManager().install())
# 옵션 적용
browser = webdriver.Chrome(service=service, options=chrome_options)
keyword = pyautogui.prompt('검색어를 입력하세요.')
cnt = 0
# 폴더 만들기 (이미 존재하면 += 1)
while True:
cnt += 1
folder_path = f'크롤링/심화3/{keyword}{cnt}모음'
if not os.path.exists(folder_path):
os.mkdir(folder_path)
break
path = f'https://www.google.com/search?q={keyword}&sca_esv=580120143&hl=ko&tbm=isch&sxsrf=AM9HkKmDd46NefxcclWk71YsVWobVHQsIw:1699362285857&source=lnms&sa=X&ved=2ahUKEwicopLr-bGCAxXV-mEKHbygCZgQ_AUoAXoECAMQAw&biw=1455&bih=705&dpr=1.1' # 구글
browser.implicitly_wait(5)
browser.maximize_window()
browser.get(path)
before_h = browser.execute_script("return window.scrollY")
# 무한스크롤
while True:
time.sleep(2)
# 맨 아래로 스크롤을 내림
browser.find_element(By.CSS_SELECTOR,"body").send_keys(Keys.END)
# 스크롤 후 높이
after_h = browser.execute_script("return window.scrollY")
# 스크롤 높이가 맨 아래와 같다면 무한루프 탈출
if after_h == before_h:
break
# 스크롤 높이 업데이트
before_h = after_h
imgs = browser.find_elements(By.CSS_SELECTOR, '.rg_i.Q4LuWd')
답변 2
0
일정이 바빠서 답변이 조금 늦었습니다...!
해당 예제는 크롬 드라이버를 이용해서 이미지를 다운 받아줘야 합니다 ㅎㅎ
아래와 같이 코드를 작성하면 정상적으로 동작을 합니다.
크롬 드라이버를 이제 자동으로 받아 옵니다. (ChromeDriverManager 쓸 필요가 없어짐)
Mozilla 적용하지 않고 드라이버를 생성합니다. (오래전 구글화면 뜨는 문제 해결)
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import urllib.request
import time
import pyautogui
import os
# 브라우저 꺼짐 방지
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
# 크롬창 안뜨게 함
# chrome_options.add_argument('--headless') # headless 모드 활성화
# chrome_options.add_argument('--disable-gpu') # GPU 가속 비활성화
# Mozilla 웹 브라우저에서 온 것처럼 인식 / 자동화된 요청을 감지하고 차단하는 것을 우회
# chrome_options.add_argument("--user-agent=Mozilla/5.0")
# 불필요 메세지 없애기
chrome_options.add_experimental_option("excludeSwitches", ["enable-logging"])
# 옵션 적용
browser = webdriver.Chrome(options=chrome_options)
keyword = pyautogui.prompt('검색어를 입력하세요.')
cnt = 0
# 폴더 만들기 (이미 존재하면 += 1)
while True:
cnt += 1
folder_path = f'크롤링/심화3/{keyword}{cnt}모음'
if not os.path.exists(folder_path):
os.mkdir(folder_path)
break
path = f'https://www.google.com/search?q={keyword}&sca_esv=581612012&tbm=isch&sxsrf=AM9HkKnRu6DCGGz23e29xT4BSB7Hq95zgA:1699754235522&source=lnms&sa=X&ved=2ahUKEwiboaf7rb2CAxWJfd4KHWkWA9MQ_AUoAXoECAQQAw&biw=1552&bih=737&dpr=1.65' # 구글
browser.implicitly_wait(5)
browser.maximize_window()
browser.get(path)
before_h = browser.execute_script("return window.scrollY")
# 무한스크롤
while True:
time.sleep(2)
# 맨 아래로 스크롤을 내림
browser.find_element(By.CSS_SELECTOR,"body").send_keys(Keys.END)
# 스크롤 후 높이
after_h = browser.execute_script("return window.scrollY")
# 스크롤 높이가 맨 아래와 같다면 무한루프 탈출
if after_h == before_h:
break
# 스크롤 높이 업데이트
before_h = after_h
imgs = browser.find_elements(By.CSS_SELECTOR, '.rg_i.Q4LuWd')
print(imgs)
0
그럼 즐거운 크롤링 되세요!!