selectors property
CSS selectors used to locate elements in the HTML.
These selectors are used to find the specific elements that contain the data you want to extract. Multiple selectors can be provided; the parser will try each one until it finds a match.
Examples:
['.product-title']
- finds elements with class 'product-title'['h1', 'h2']
- tries h1 first, then h2 if h1 not found['_self']
- uses the parent element directly
Implementation
List<String> selectors;