diff --git a/docs/Selectors.md b/docs/Selectors.md index 6c6f167..2aea0cc 100644 --- a/docs/Selectors.md +++ b/docs/Selectors.md @@ -22,7 +22,6 @@ selected element. These selectors can be used as data extraction selectors: * [Table selector] [table-selector] * [Element attribute selector] [element-attribute-selector] * [HTML selector] [html-selector] - * [Grouped selector] [grouped-selector] ### Link selectors @@ -117,7 +116,6 @@ selectors on [CSS selector][css-selectors] page. [image-selector]: Selectors/Image%20selector.md [element-attribute-selector]: Selectors/Element%20attribute%20selector.md [table-selector]: Selectors/Table%20selector.md -[grouped-selector]: Selectors/Grouped%20selector.md [html-selector]: Selectors/HTML%20selector.md [element-selector]: Selectors/Element%20selector.md [element-click-selector]: Selectors/Element%20click%20selector.md diff --git a/docs/Selectors/Grouped selector.md b/docs/Selectors/Grouped selector.md deleted file mode 100644 index f2b9422..0000000 --- a/docs/Selectors/Grouped selector.md +++ /dev/null @@ -1,30 +0,0 @@ -# Grouped selector - -Grouped selector can group text data from multiple elements into one record. -The extracted data will be stored as JSON. - -## Configuration options - * selector - [CSS selector] [css-selector] for the elements whose text will be - extracted and stored in JSON format. - * attribute name - optionally this selector can extract an attribute of the - selected element. If specified the extractor will also add this attribute to - the resulting JSON. - -## Use cases - -### Extract article references - -For example you are extracting a news article that might have multiple -reference links. If you are selecting these links with link selector with -multiple checked you would get duplicate articles in the result set where each -record would contain one reference link. Using grouped selector you could -serialize all these reference links into one record. To do that select all -reference links and set attribute name to `href` to also extract links to these -sites. - -## Related videos - -* [How to scrape multiple values in one row] - -[css-selector]: ../CSS%20selector.md -[How to scrape multiple values in one row]: https://www.webscraper.io/how-to-video/group-selector