selenium 3

셀레니움 카카오 클릭 기부(같이가치) 1차 로그인 ~ 응원 하트 클릭 까지

클릭 기부하고 싶은데 예전에는 어린이들만 했다.. 왜 그랬는지 노인들은 싫었는데 ㅎㅎ 이제 40대가 되니 에헴 여하튼 생각날때마다 들어가서 응원 (하트) 누리고 댓글을 달았다 그래도 개발자인데 한방에 하는 방법이 없을까 하다 크롤링 배워서 해보기로 함 그래서 백수기념으로 한번 만들어봤다 재밌다 파이썬 겁나 빠르게 90개 정도 9천원 !!! 기부ㅋㅋ 코드 참고 하시고 시간 되시는 분 파이썬 돌려서 기부해주시면 좋을 거 같다 시간 되면 댓글까지 할 예정 from selenium import webdriver from selenium.webdriver.common.keys import Keys import pyautogui import pyperclip import time #브라우저 생성 browser = ..

셀리니움 Selenium 중첩 클래스 찾아오기

url = 'https://search.naver.com/search.naver?sm=top_hty&fbm=1&ie=utf8&query=%EC%98%81%ED%99%94+%EC%88%9C%EC%9C%84' temp_img_alt = driver.find_element_by_xpath("//div[@class='list_image_box']//ul[contains(@class,'_panel')]//img") //div[@class='list_image_box'] 여기 아래 ]//ul[contains(@class,'_panel')] //img 태그를 읽어오기 #타입 print(type(temp_img_alt)) #html 확인 print(temp_img_alt.get_attribute('outerHTML')..