Web Scraping 101 -> P4
Let's Discover the most important trick in Web Scraping
Table of contents
Why CSS Selectors?
Let's understand what all is about, CSS refers to the language Cascading Style Sheets which is used in styling web pages alongside HTML and JavaScript, on the other hand, Selectors refers to the pattern to select elements to which a set of CSS rules are then applied.
Complete the path :
In the previous part, we talked about the tools to use in our web scraping journey,
The use of those tools makes it easier to scrap. However, all that we get from those tools and all that we care about are those CSS Selectors, and hence we really need to understand them.
An example of CSS Selectors will be :
In the next part, we will see a use case of those selectors and how we can
insert them in our scraping code.