Created
June 1, 2021 12:19
-
-
Save Abhayparashar31/01b857928dee76b4763e750a9887b839 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Elements Selector Expression | |
| All Tags (h1) response.css('h1').extract() | |
| All Tags with Id(Header) responses.css('#header::text').extract() | |
| All Links(a) response.css('a').extract() | |
| Extracting text from all the classes named text response.css('.text::text').extract() | |
| All Links(a) inside a Paragraph(p) tag response.css('p a::text').extract() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment