100일 중 72일 코드: CSS 로케이터
python의 Xpath 및 CSS 로케이터
from scrapy import Selector
# Create a selector object from a secret website
sel = Selector( text = html)
# Select all hyperlinks of div elements belonging to class "course-block"
course_as = sel.css( 'div.course-block > a' )
# Selecting all href attributes chaining with css
hrefs_from_css = course_as.css( '::attr(href)' )
# Selecting all href attributes chaining with xpath
hrefs_from_xpath = course_as.xpath( './@href')
72일째, https://t.co/fBZgTteSh7 데이터 캠프 pic.twitter.com/yuC9PoDCMI-Durga Pokharel(@mathdurga)에서 웹 페이지 캡처(CSS 포지셔닝 머신, 변경 및 응답)
Reference
이 문제에 관하여(100일 중 72일 코드: CSS 로케이터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/iamdurga/day-72-of-100daysofcode-css-locator-n4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)