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
Copy file name to clipboardexpand all lines: packages/components/nodes/documentloaders/Cheerio/Cheerio.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ class Cheerio_DocumentLoaders implements INode {
64
64
additionalParams: true,
65
65
description:
66
66
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
67
-
warning: `Retreiving 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)`
67
+
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)`
@@ -64,7 +64,45 @@ class Playwright_DocumentLoaders implements INode {
64
64
additionalParams: true,
65
65
description:
66
66
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
67
-
warning: `Retreiving 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)`
67
+
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
+
},
69
+
{
70
+
label: 'Wait Until',
71
+
name: 'waitUntilGoToOption',
72
+
type: 'options',
73
+
description: 'Select a go to wait until option',
74
+
options: [
75
+
{
76
+
label: 'Load',
77
+
name: 'load',
78
+
description: 'Consider operation to be finished when the load event is fired.'
79
+
},
80
+
{
81
+
label: 'DOM Content Loaded',
82
+
name: 'domcontentloaded',
83
+
description: 'Consider operation to be finished when the DOMContentLoaded event is fired.'
84
+
},
85
+
{
86
+
label: 'Network Idle',
87
+
name: 'networkidle',
88
+
description: 'Navigation is finished when there are no more connections for at least 500 ms.'
89
+
},
90
+
{
91
+
label: 'Commit',
92
+
name: 'commit',
93
+
description: 'Consider operation to be finished when network response is received and the document started loading.'
94
+
}
95
+
],
96
+
optional: true,
97
+
additionalParams: true
98
+
},
99
+
{
100
+
label: 'Wait for selector to load',
101
+
name: 'waitForSelector',
102
+
type: 'string',
103
+
optional: true,
104
+
additionalParams: true,
105
+
description: 'CSS selectors like .div or #div'
68
106
},
69
107
{
70
108
label: 'Metadata',
@@ -81,6 +119,8 @@ class Playwright_DocumentLoaders implements INode {
@@ -64,7 +65,45 @@ class Puppeteer_DocumentLoaders implements INode {
64
65
additionalParams: true,
65
66
description:
66
67
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
67
-
warning: `Retreiving 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
+
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)`
69
+
},
70
+
{
71
+
label: 'Wait Until',
72
+
name: 'waitUntilGoToOption',
73
+
type: 'options',
74
+
description: 'Select a go to wait until option',
75
+
options: [
76
+
{
77
+
label: 'Load',
78
+
name: 'load',
79
+
description: `When the initial HTML document's DOM has been loaded and parsed`
80
+
},
81
+
{
82
+
label: 'DOM Content Loaded',
83
+
name: 'domcontentloaded',
84
+
description: `When the complete HTML document's DOM has been loaded and parsed`
85
+
},
86
+
{
87
+
label: 'Network Idle 0',
88
+
name: 'networkidle0',
89
+
description: 'Navigation is finished when there are no more than 0 network connections for at least 500 ms'
90
+
},
91
+
{
92
+
label: 'Network Idle 2',
93
+
name: 'networkidle2',
94
+
description: 'Navigation is finished when there are no more than 2 network connections for at least 500 ms'
95
+
}
96
+
],
97
+
optional: true,
98
+
additionalParams: true
99
+
},
100
+
{
101
+
label: 'Wait for selector to load',
102
+
name: 'waitForSelector',
103
+
type: 'string',
104
+
optional: true,
105
+
additionalParams: true,
106
+
description: 'CSS selectors like .div or #div'
68
107
},
69
108
{
70
109
label: 'Metadata',
@@ -81,6 +120,8 @@ class Puppeteer_DocumentLoaders implements INode {
0 commit comments