Skip to content
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

python AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' 해결방법

 

 

 

 

line 26, in <module> play_button = driver.find_element_by_css_selector('button.ytp-large-play-button.ytp-button') AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector'

 

라인의 오류해결 방법.

 


이 오류는 driver 객체가 find_element_by_css_selector 메소드를 갖고 있지 않아 발생한 것입니다.

 

이전 코드에서는 webdriver.Chrome() 객체를 생성했지만, 해당 객체에는 find_element_by_css_selector와 같은 WebDriver API가 포함되어 있지 않습니다.

 

해당 메소드를 사용하려면 webdriver.Chrome()으로 생성된 driver 객체의 find_element 메소드를 사용하면 됩니다. 즉, driver.find_element_by_css_selector 대신 driver.find_element(By.CSS_SELECTOR, ...) 형태로 사용해야 합니다.

 

따라서, line 26을 다음과 같이 수정해주시면 됩니다.

 

 
python
from selenium.webdriver.common.by import By
.
.
.
play_button = driver.find_element(By.CSS_SELECTOR, 'button.ytp-large-play-button.ytp-button')
 
로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
637 Server php) 엑셀로 저장하기 2013.05.24 22066
636 Server php) 이미지 사이즈 구해서 0이면 게시물 내용 없애기 2013.07.05 11285
635 Server php.ini 파일설정으로 파일업로드 용량늘리기 2015.03.03 1152
634 HTMLPHPMSQL PHP5.4.4 form 변수 전달받기(get, post방식) 2015.07.22 8329
633 HTMLPHPMSQL PHP강좌 MySQL 연동 2014.11.11 5801
632 컴퓨터잡담 PHP로 FTP 접속 / 업로드 / 다운로드 등의 컨트롤 소스 2 3 2009.10.20 32766
631 컴퓨터잡담 PHP로 그림에 글자 입히기 2009.10.17 19996
630 컴퓨터잡담 php로 이미지를 mysql디비 저장하고 보여주는 소스 4 3 2009.10.17 62325
629 컴퓨터잡담 php에서 script로 변수 전달 후 html에 div로 내용 출력하기 1 3 2010.04.01 15903
628 프로세스 pinomate.exe 프로세스 삭제방법 6 2011.02.13 45999
627 컴퓨터잡담 postmassge 마우스 & PixelGetColor & 2009.12.22 7945
626 AutoHotKey PostMessage로 한글 사용하기 1 2 2011.02.09 16810
625 WindowsTip Process Explorer 불필요한 scvhost.exe 제거하기 2013.03.19 12131
624 컴퓨터잡담 Prototype.js를 제대로 사용하는 방법 2010.03.27 10299
623 Server Proxy and hide ip address problem 1 1 2013.04.03 11999
622 Server PuTTY Download Page(telnet,ftp,ssh) file 2016.12.06 5509
» 파이썬 python AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' 해결방법 2023.05.07 47650
620 파이썬 python class def 2023.03.04 2368
619 파이썬 python html tag 제거 경로 금지 문자 제거 2021.10.26 3199
618 컴퓨터잡담 python pip 에러 line 193, line 197 해결방법 2021.08.12 4099
Board Pagination Prev 1 ... 13 14 15 16 17 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소