├── .all-contributorsrc ├── .github └── workflows │ ├── nodejs.yml │ └── npmpublish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cli.js ├── examples ├── flags.js ├── json.js ├── many_event.js ├── methods │ ├── banking.yml │ ├── basicauth.yml │ ├── browserSettings.yml │ ├── click.yml │ ├── flags.yml │ ├── form.yml │ ├── getRequest.yml │ ├── goBack.yml │ ├── html.yml │ ├── many.yml │ ├── many_event.yml │ ├── many_using_get.yml │ ├── pdf_lib.yml │ ├── pdf_save.yml │ ├── screenshot_lib.yml │ ├── screenshot_save.yml │ ├── scrollTo.yml │ ├── scrollToEnd.yml │ ├── setContent.yml │ ├── transform.yml │ ├── type.yml │ └── weather.yml ├── pdf.js ├── screenshot.js └── scrollTo.js ├── helpers ├── cheerio.js ├── definition.js ├── err.js ├── methods │ ├── click.js │ ├── form.js │ ├── goBack.js │ ├── goto.js │ ├── html.js │ ├── index.js │ ├── keyboardPress.js │ ├── many.js │ ├── pdf.js │ ├── property.js │ ├── screenshot.js │ ├── scrollTo.js │ ├── scrollToEnd.js │ ├── setContent.js │ ├── text.js │ ├── title.js │ ├── type.js │ ├── url.js │ ├── waitFor.js │ └── waitForNavigation.js ├── parser.js └── steps.js ├── index.js ├── logo.png ├── package.json └── test ├── auth.js └── parser.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/cli.js -------------------------------------------------------------------------------- /examples/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/flags.js -------------------------------------------------------------------------------- /examples/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/json.js -------------------------------------------------------------------------------- /examples/many_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/many_event.js -------------------------------------------------------------------------------- /examples/methods/banking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/banking.yml -------------------------------------------------------------------------------- /examples/methods/basicauth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/basicauth.yml -------------------------------------------------------------------------------- /examples/methods/browserSettings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/browserSettings.yml -------------------------------------------------------------------------------- /examples/methods/click.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/click.yml -------------------------------------------------------------------------------- /examples/methods/flags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/flags.yml -------------------------------------------------------------------------------- /examples/methods/form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/form.yml -------------------------------------------------------------------------------- /examples/methods/getRequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/getRequest.yml -------------------------------------------------------------------------------- /examples/methods/goBack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/goBack.yml -------------------------------------------------------------------------------- /examples/methods/html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/html.yml -------------------------------------------------------------------------------- /examples/methods/many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/many.yml -------------------------------------------------------------------------------- /examples/methods/many_event.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/many_event.yml -------------------------------------------------------------------------------- /examples/methods/many_using_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/many_using_get.yml -------------------------------------------------------------------------------- /examples/methods/pdf_lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/pdf_lib.yml -------------------------------------------------------------------------------- /examples/methods/pdf_save.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/pdf_save.yml -------------------------------------------------------------------------------- /examples/methods/screenshot_lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/screenshot_lib.yml -------------------------------------------------------------------------------- /examples/methods/screenshot_save.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/screenshot_save.yml -------------------------------------------------------------------------------- /examples/methods/scrollTo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/scrollTo.yml -------------------------------------------------------------------------------- /examples/methods/scrollToEnd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/scrollToEnd.yml -------------------------------------------------------------------------------- /examples/methods/setContent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/setContent.yml -------------------------------------------------------------------------------- /examples/methods/transform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/transform.yml -------------------------------------------------------------------------------- /examples/methods/type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/type.yml -------------------------------------------------------------------------------- /examples/methods/weather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/methods/weather.yml -------------------------------------------------------------------------------- /examples/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/pdf.js -------------------------------------------------------------------------------- /examples/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/screenshot.js -------------------------------------------------------------------------------- /examples/scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/examples/scrollTo.js -------------------------------------------------------------------------------- /helpers/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/cheerio.js -------------------------------------------------------------------------------- /helpers/definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/definition.js -------------------------------------------------------------------------------- /helpers/err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/err.js -------------------------------------------------------------------------------- /helpers/methods/click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/click.js -------------------------------------------------------------------------------- /helpers/methods/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/form.js -------------------------------------------------------------------------------- /helpers/methods/goBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/goBack.js -------------------------------------------------------------------------------- /helpers/methods/goto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/goto.js -------------------------------------------------------------------------------- /helpers/methods/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/html.js -------------------------------------------------------------------------------- /helpers/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/index.js -------------------------------------------------------------------------------- /helpers/methods/keyboardPress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/keyboardPress.js -------------------------------------------------------------------------------- /helpers/methods/many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/many.js -------------------------------------------------------------------------------- /helpers/methods/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/pdf.js -------------------------------------------------------------------------------- /helpers/methods/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/property.js -------------------------------------------------------------------------------- /helpers/methods/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/screenshot.js -------------------------------------------------------------------------------- /helpers/methods/scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/scrollTo.js -------------------------------------------------------------------------------- /helpers/methods/scrollToEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/scrollToEnd.js -------------------------------------------------------------------------------- /helpers/methods/setContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/setContent.js -------------------------------------------------------------------------------- /helpers/methods/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/text.js -------------------------------------------------------------------------------- /helpers/methods/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/title.js -------------------------------------------------------------------------------- /helpers/methods/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/type.js -------------------------------------------------------------------------------- /helpers/methods/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/url.js -------------------------------------------------------------------------------- /helpers/methods/waitFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/waitFor.js -------------------------------------------------------------------------------- /helpers/methods/waitForNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/methods/waitForNavigation.js -------------------------------------------------------------------------------- /helpers/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/parser.js -------------------------------------------------------------------------------- /helpers/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/helpers/steps.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/index.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/package.json -------------------------------------------------------------------------------- /test/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/test/auth.js -------------------------------------------------------------------------------- /test/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joseconstela/webparsy/HEAD/test/parser.js --------------------------------------------------------------------------------