하얀설표 블로그




해결)NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type.





( 수정됨)


에러

파이썬 bs4 모듈을 사용할 때 css 셀렉터로 :nth-child() 셀렉터를 사용하면 다음과 같은 에러가 발생할 수 있다.

NotImplementedError: Only the following pseudo-classes are implemented: nth-of-type.

해결방법

:nth-child()가 아닌 :nth-of-type() 셀렉터를 사용한다.

설명

:nth-child()와 :nth-of-type() 셀렉터는 서로 비슷해 보이지만 다른 작업을 하게 된다.
특정 태그를 선택하고 싶다면 :nth-of-type() 셀렉터를 사용하는 것이 좋다.

두 셀렉터간의 차이점과 사용방법은 이 글에서 확인할 수 있다.


공감 : 0







white.seolpyo.com