Set default value for get links limit in web scraper nodes - cheerio, playwright, and puppeteer
This commit is contained in:
parent
bf60a1a2a9
commit
c24708f53b
|
|
@ -63,6 +63,7 @@ class Cheerio_DocumentLoaders implements INode {
|
|||
name: 'limit',
|
||||
type: 'number',
|
||||
optional: true,
|
||||
default: '10',
|
||||
additionalParams: true,
|
||||
description:
|
||||
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ class Playwright_DocumentLoaders implements INode {
|
|||
name: 'limit',
|
||||
type: 'number',
|
||||
optional: true,
|
||||
default: '10',
|
||||
additionalParams: true,
|
||||
description:
|
||||
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ class Puppeteer_DocumentLoaders implements INode {
|
|||
name: 'limit',
|
||||
type: 'number',
|
||||
optional: true,
|
||||
default: '10',
|
||||
additionalParams: true,
|
||||
description:
|
||||
'Only used when "Get Relative Links Method" is selected. Set 0 to retrieve all relative links, default limit is 10.',
|
||||
|
|
|
|||
Loading…
Reference in New Issue