Please enable JavaScript.
Coggle requires JavaScript to display documents.
Scrapling - Coggle Diagram
Scrapling
Selectors
-
-
filter-based search
-
page.find_all('section', {'id*':'product'})
-
-
text search
page.find_by_text('Products', first_match=False)
regex search
page.find_by_regex(r'Product \d', first_match=False)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-