You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -18,7 +20,7 @@ class Cheerio_DocumentLoaders implements INode {
18
20
constructor(){
19
21
this.label='Cheerio Web Scraper'
20
22
this.name='cheerioWebScraper'
21
-
this.version=1.0
23
+
this.version=1.1
22
24
this.type='Document'
23
25
this.icon='cheerio.svg'
24
26
this.category='Document Loaders'
@@ -66,6 +68,14 @@ class Cheerio_DocumentLoaders implements INode {
66
68
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
67
69
warning: `Retrieving all links might take long time, and all links will be upserted again if the flow's state changed (eg: different URL, chunk size, etc)`
68
70
},
71
+
{
72
+
label: 'Selector (CSS)',
73
+
name: 'selector',
74
+
type: 'string',
75
+
description: 'Specify a CSS selector to select the content to be extracted',
76
+
optional: true,
77
+
additionalParams: true
78
+
},
69
79
{
70
80
label: 'Metadata',
71
81
name: 'metadata',
@@ -88,10 +98,18 @@ class Cheerio_DocumentLoaders implements INode {
0 commit comments