NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type. 오류메시지, 해결방법
CODEDRAGON ㆍDevelopment/Python
반응형
오류 메시지
{BequtifulSoap}에서 n번째에 위치하는 문서 객체를 선택할 경우 아래와 같은 오류메시지가 발생합니다.
NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type. |
해결방법
selenium을 기반으로한 BequtifulSoap에서는 nth-child 선택자를 지원하지 않습니다. nth-child 선택자 대신 nth-of-type 를 사용하면 됩니다.
변경 전 |
bs.select('#content > div.article > div.section > div.news_area > div > ul > li:nth-child(1) > span > a') |
변경 후 |
bs.select('#content > div.article > div.section > div.news_area > div > ul > li:nth-of-type(1) > span > a') |
'Development > Python' 카테고리의 다른 글
re 모듈(regular expression) (0) | 2020.03.01 |
---|---|
selenium 크롤링 설정 - CHROMDRIVER (0) | 2020.03.01 |
메타 문자(meta characters) (0) | 2020.02.27 |
CSV 파일 쓰기 (0) | 2020.02.27 |
Python 디버깅 (0) | 2020.02.27 |