├── .dockerignore ├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.MD ├── CONTRIBUTING.MD ├── Dockerfile ├── LICENSE ├── MIGRATION-2.0.0.MD ├── MIGRATION-2.2.0.MD ├── MIGRATION-3.0.0.MD ├── ROADMAP.MD ├── data ├── kakunin_logo.png ├── npm.png ├── pageObjectFeature.gif ├── travis.png └── tsh.png ├── docker-compose.yml ├── docs ├── browserstack.md ├── configuration.md ├── cross-browser.md ├── docker.md ├── extending.md ├── headless.md ├── hooks.md ├── how-it-works.md ├── index.md ├── matchers.md ├── parallel-testing.md ├── performance-testing.md ├── quickstart.md ├── steps-debug.md ├── steps-elements.md ├── steps-files.md ├── steps-forms.md ├── steps-generators.md ├── steps-navigation.md ├── steps-rest.md ├── testing-rest-api.md └── transformers.md ├── functional-tests ├── dictionaries │ └── test-dictionary.js ├── downloads │ ├── .gitkeep │ └── example.xlsx ├── features │ ├── content │ │ ├── operations_on_stored_variables.feature │ │ ├── validate_tabular_data.feature │ │ ├── validate_tabular_data_css.feature │ │ ├── wait_for_element_dissapear.feature │ │ └── wait_for_element_dissapear_css.feature │ ├── drag-and-drop │ │ ├── operations_on_elements.feature │ │ └── operations_on_elements_css.feature │ ├── forms │ │ ├── fill_and_check_form.feature │ │ ├── fill_and_check_form_css.feature │ │ └── fill_select.feature │ ├── matchers │ │ ├── match_current_date.feature │ │ ├── match_current_date_css.feature │ │ ├── matchers.feature │ │ └── matchers_css.feature │ ├── navigation │ │ ├── navigate_to_given_page.feature │ │ ├── navigate_to_given_page_css.feature │ │ └── switch-between-tabs.feature │ ├── pages │ │ └── verify_displayed_page.feature │ ├── testing-api │ │ ├── testing_delete_request.feature │ │ ├── testing_get_response.feature │ │ ├── testing_headers_setting.feature │ │ ├── testing_patch_request.feature │ │ ├── testing_post_form_data.feature │ │ └── testing_post_json.feature │ └── wait-for-elements │ │ ├── wait_for_form.feature │ │ ├── wait_for_form_css.feature │ │ └── wait_for_table.feature ├── kakunin.conf.js ├── package.json ├── pages │ ├── absolutePage.js │ ├── additionalParams.js │ ├── appearSimpleForm.js │ ├── appearSimpleFormPost.js │ ├── appearTabularData.js │ ├── buttonForm.js │ ├── dragAndDrop.js │ ├── google.js │ ├── main.js │ ├── matchers.js │ ├── navigationPages.js │ ├── simpleForm.js │ ├── simpleFormPost.js │ ├── simpleSelectForm.js │ └── tabularData.js ├── regexes │ └── index.js ├── reports │ ├── .gitkeep │ ├── json-output-folder │ │ └── .gitkeep │ ├── performance │ │ └── .gitkeep │ └── report │ │ ├── .gitkeep │ │ └── features │ │ └── .gitkeep ├── step_definitions │ └── custom_json_parser.js └── www │ ├── assets │ └── kittens.jpg │ ├── index.js │ ├── jsonData │ └── xlsxData.router.js │ └── views │ ├── absolute │ └── index.njs │ ├── drag-and-drop │ └── index.njs │ ├── form │ ├── disappear.njs │ ├── select.njs │ └── simple.njs │ ├── index.njs │ ├── layout │ └── default.njs │ ├── matchers │ └── matchers.njs │ ├── navigation │ └── page.njs │ ├── table │ └── tabular-data.njs │ └── wait-for-appear │ ├── form.njs │ └── table.njs ├── package.json ├── readme.md ├── src ├── cli.ts ├── comparators │ ├── comparator.interface.ts │ ├── comparator │ │ ├── date.comparator.spec.ts │ │ ├── date.comparator.ts │ │ ├── index.ts │ │ ├── number.comparator.spec.ts │ │ └── number.comparator.ts │ ├── comparators.spec.ts │ ├── comparators.ts │ └── index.ts ├── core │ ├── cli │ │ ├── cli.helper.spec.ts │ │ ├── cli.helper.ts │ │ └── initializer.ts │ ├── config.helper.ts │ ├── fs │ │ ├── delete-files.helper.ts │ │ └── prepare-catalogs.helper.ts │ ├── modules-loader.helper.ts │ └── prototypes.ts ├── dictionaries │ ├── base.ts │ ├── dictionaries.spec.ts │ ├── dictionaries.ts │ └── index.ts ├── emails │ ├── adapter │ │ ├── mailtrap.client.spec.ts │ │ └── mailtrap.client.ts │ ├── email.service.spec.ts │ ├── email.service.ts │ ├── filter │ │ ├── current-user.filter.ts │ │ ├── current-user.spec.ts │ │ ├── index.ts │ │ ├── minimal-email-size.filter.spec.ts │ │ ├── minimal-email-size.filter.ts │ │ ├── text-fields.filter.spec.ts │ │ └── text-fields.filter.ts │ ├── filters.spec.ts │ ├── filters.ts │ └── index.ts ├── form-handlers │ ├── form-handler.interface.ts │ ├── handler │ │ ├── checkbox.handler.ts │ │ ├── ckeditor.handler.ts │ │ ├── custom-angular-select.handler.ts │ │ ├── default.handler.ts │ │ ├── file.handler.ts │ │ ├── index.ts │ │ ├── radio.handler.ts │ │ ├── select.handler.ts │ │ └── uploaded-file.handler.ts │ ├── handlers.ts │ └── index.ts ├── generators │ ├── generator.interface.ts │ ├── generator │ │ ├── index.ts │ │ ├── personalData.generator.spec.ts │ │ ├── personalData.generator.ts │ │ ├── string-with-length.generator.spec.ts │ │ └── string-with-length.generator.ts │ ├── generators.spec.ts │ ├── generators.ts │ └── index.ts ├── index.ts ├── kakunin.d.ts ├── matchers │ ├── index.ts │ ├── matcher.interface.ts │ ├── matcher │ │ ├── attribute.matcher.spec.ts │ │ ├── attribute.matcher.ts │ │ ├── clickable.matcher.spec.ts │ │ ├── clickable.matcher.ts │ │ ├── currentDate.matcher.spec.ts │ │ ├── currentDate.matcher.ts │ │ ├── index.ts │ │ ├── invisible.matcher.spec.ts │ │ ├── invisible.matcher.ts │ │ ├── not-clickable.matcher.spec.ts │ │ ├── not-clickable.matcher.ts │ │ ├── present.matcher.spec.ts │ │ ├── present.matcher.ts │ │ ├── regex-matcher │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── regex-builder.spec.ts │ │ │ ├── regex-builder.ts │ │ │ ├── regex.ts │ │ │ └── regexes │ │ │ │ └── default.ts │ │ ├── text.matcher.spec.ts │ │ ├── text.matcher.ts │ │ ├── visible.matcher.spec.ts │ │ └── visible.matcher.ts │ ├── matchers.spec.ts │ └── matchers.ts ├── pages │ ├── base.ts │ ├── form.ts │ └── index.ts ├── protractor.conf.ts ├── rest │ ├── api-request.ts │ ├── api-response.spec.ts │ ├── api-response.ts │ └── rest-api-service.ts ├── step_definitions │ ├── api.ts │ ├── debug.ts │ ├── elements.ts │ ├── email.ts │ ├── file.ts │ ├── form.ts │ ├── generators.ts │ ├── navigation.ts │ ├── performance.ts │ └── tabs.ts ├── tests │ ├── dictionaries │ │ └── fake-dictionary.ts │ ├── init.ts │ └── reports │ │ └── performance │ │ ├── incorrect-performance-report.har │ │ └── performance-report.har ├── transformers │ ├── index.ts │ ├── transformer.interface.ts │ ├── transformer │ │ ├── dictionary.transformer.spec.ts │ │ ├── dictionary.transformer.ts │ │ ├── generator.transformer.spec.ts │ │ ├── generator.transformer.ts │ │ ├── variable-store.transformer.spec.ts │ │ └── variable-store.transformer.ts │ ├── transformers.spec.ts │ └── transformers.ts └── web │ ├── browsers │ ├── browsers-config.helper.ts │ ├── browserstack-config.helper.ts │ ├── create-firefox-profile.helper.ts │ ├── get-browser-drivers.helper.ts │ └── safari-browser-configurator.helper.ts │ ├── cucumber │ ├── config.ts │ ├── hooks.ts │ ├── hooks │ │ ├── clear-download.hook.ts │ │ ├── clear-variables.hook.ts │ │ ├── hook.interface.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ ├── reload-fixtures.hook.ts │ │ ├── reload-user.hook.ts │ │ └── take-screenshots.hook.ts │ └── wait-for-condition.helper.ts │ ├── fixtures │ └── fixtures-loader.helper.ts │ ├── fs │ ├── download-checker.helper.ts │ └── file-manager.helper.ts │ ├── parallel │ ├── chunk-specs.helper.spec.ts │ ├── chunk-specs.helper.ts │ └── prepare-browser-instance-specs.helper.ts │ ├── parameters.ts │ ├── performance │ ├── JSON-performance-report-parser.helper.spec.ts │ ├── JSON-performance-report-parser.helper.ts │ ├── time-to-first-byte-analyser.helper.spec.ts │ └── time-to-first-byte-analyser.helper.ts │ ├── url-parser.helper.spec.ts │ ├── url-parser.helper.ts │ ├── user-provider.helper.ts │ ├── variable-store.helper.spec.ts │ └── variable-store.helper.ts ├── templates ├── example.feature ├── generator.js ├── hook.js ├── login.js ├── matcher.js ├── page.js ├── regex.js └── steps.js ├── tsconfig.json ├── tsconfig.test.json ├── tslint.json └── website ├── README.md ├── build └── Kakunin │ ├── css │ ├── main.css │ └── prism.css │ ├── docs │ ├── 2.4.0 │ │ ├── configuration.html │ │ ├── configuration │ │ │ └── index.html │ │ ├── cross-browser.html │ │ ├── cross-browser │ │ │ └── index.html │ │ ├── docker.html │ │ ├── docker │ │ │ └── index.html │ │ ├── extending.html │ │ ├── extending │ │ │ └── index.html │ │ ├── how-it-works.html │ │ ├── how-it-works │ │ │ └── index.html │ │ ├── index.html │ │ ├── matchers.html │ │ ├── matchers │ │ │ └── index.html │ │ ├── parallel-testing.html │ │ ├── parallel-testing │ │ │ └── index.html │ │ ├── performance-testing.html │ │ ├── performance-testing │ │ │ └── index.html │ │ ├── quickstart.html │ │ ├── quickstart │ │ │ └── index.html │ │ ├── steps-debug.html │ │ ├── steps-debug │ │ │ └── index.html │ │ ├── steps-elements.html │ │ ├── steps-elements │ │ │ └── index.html │ │ ├── steps-files.html │ │ ├── steps-files │ │ │ └── index.html │ │ ├── steps-forms.html │ │ ├── steps-forms │ │ │ └── index.html │ │ ├── steps-generators.html │ │ ├── steps-generators │ │ │ └── index.html │ │ ├── steps-navigation.html │ │ ├── steps-navigation │ │ │ └── index.html │ │ ├── transformers.html │ │ └── transformers │ │ │ └── index.html │ ├── configuration.html │ ├── configuration │ │ └── index.html │ ├── cross-browser.html │ ├── cross-browser │ │ └── index.html │ ├── docker.html │ ├── docker │ │ └── index.html │ ├── extending.html │ ├── extending │ │ └── index.html │ ├── how-it-works.html │ ├── how-it-works │ │ └── index.html │ ├── index.html │ ├── matchers.html │ ├── matchers │ │ └── index.html │ ├── next │ │ ├── browserstack.html │ │ ├── browserstack │ │ │ └── index.html │ │ ├── configuration.html │ │ ├── configuration │ │ │ └── index.html │ │ ├── cross-browser.html │ │ ├── cross-browser │ │ │ └── index.html │ │ ├── docker.html │ │ ├── docker │ │ │ └── index.html │ │ ├── extending.html │ │ ├── extending │ │ │ └── index.html │ │ ├── headless.html │ │ ├── headless │ │ │ └── index.html │ │ ├── hooks.html │ │ ├── hooks │ │ │ └── index.html │ │ ├── how-it-works.html │ │ ├── how-it-works │ │ │ └── index.html │ │ ├── index.html │ │ ├── matchers.html │ │ ├── matchers │ │ │ └── index.html │ │ ├── parallel-testing.html │ │ ├── parallel-testing │ │ │ └── index.html │ │ ├── performance-testing.html │ │ ├── performance-testing │ │ │ └── index.html │ │ ├── quickstart.html │ │ ├── quickstart │ │ │ └── index.html │ │ ├── steps-debug.html │ │ ├── steps-debug │ │ │ └── index.html │ │ ├── steps-elements.html │ │ ├── steps-elements │ │ │ └── index.html │ │ ├── steps-files.html │ │ ├── steps-files │ │ │ └── index.html │ │ ├── steps-forms.html │ │ ├── steps-forms │ │ │ └── index.html │ │ ├── steps-generators.html │ │ ├── steps-generators │ │ │ └── index.html │ │ ├── steps-navigation.html │ │ ├── steps-navigation │ │ │ └── index.html │ │ ├── steps-rest.html │ │ ├── steps-rest │ │ │ └── index.html │ │ ├── testing-rest-api.html │ │ ├── testing-rest-api │ │ │ └── index.html │ │ ├── transformers.html │ │ └── transformers │ │ │ └── index.html │ ├── parallel-testing.html │ ├── parallel-testing │ │ └── index.html │ ├── performance-testing.html │ ├── performance-testing │ │ └── index.html │ ├── quickstart.html │ ├── quickstart │ │ └── index.html │ ├── steps-debug.html │ ├── steps-debug │ │ └── index.html │ ├── steps-elements.html │ ├── steps-elements │ │ └── index.html │ ├── steps-files.html │ ├── steps-files │ │ └── index.html │ ├── steps-forms.html │ ├── steps-forms │ │ └── index.html │ ├── steps-generators.html │ ├── steps-generators │ │ └── index.html │ ├── steps-navigation.html │ ├── steps-navigation │ │ └── index.html │ ├── transformers.html │ └── transformers │ │ └── index.html │ ├── en │ ├── versions.html │ └── versions │ │ └── index.html │ ├── img │ ├── favicon │ │ └── favicon.ico │ ├── kakunin_ogImage.jpg │ ├── kakunin_white_logo.svg │ ├── kakunin_white_logo_text.svg │ └── language.svg │ ├── index.html │ ├── js │ ├── codetabs.js │ └── scrollSpy.js │ ├── sitemap.xml │ ├── versions.html │ └── versions │ └── index.html ├── core └── Footer.js ├── i18n └── en.json ├── package-lock.json ├── package.json ├── pages └── en │ └── versions.js ├── sidebars.json ├── siteConfig.js ├── static ├── css │ └── custom.css ├── img │ ├── favicon │ │ └── favicon.ico │ ├── kakunin_ogImage.jpg │ ├── kakunin_white_logo.svg │ └── kakunin_white_logo_text.svg └── index.html ├── versioned_docs ├── version-2.4.0 │ ├── configuration.md │ ├── cross-browser.md │ ├── docker.md │ ├── extending.md │ ├── how-it-works.md │ ├── index.md │ ├── matchers.md │ ├── parallel-testing.md │ ├── performance-testing.md │ ├── quickstart.md │ ├── steps-debug.md │ ├── steps-elements.md │ ├── steps-files.md │ ├── steps-forms.md │ ├── steps-generators.md │ ├── steps-navigation.md │ └── transformers.md └── version-2.5.0 │ └── steps-elements.md ├── versioned_sidebars └── version-2.4.0-sidebars.json └── versions.json /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | website 2 | functional-tests 3 | docs -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION-2.0.0.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/MIGRATION-2.0.0.MD -------------------------------------------------------------------------------- /MIGRATION-2.2.0.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/MIGRATION-2.2.0.MD -------------------------------------------------------------------------------- /MIGRATION-3.0.0.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/MIGRATION-3.0.0.MD -------------------------------------------------------------------------------- /ROADMAP.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/ROADMAP.MD -------------------------------------------------------------------------------- /data/kakunin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/data/kakunin_logo.png -------------------------------------------------------------------------------- /data/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/data/npm.png -------------------------------------------------------------------------------- /data/pageObjectFeature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/data/pageObjectFeature.gif -------------------------------------------------------------------------------- /data/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/data/travis.png -------------------------------------------------------------------------------- /data/tsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/data/tsh.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/browserstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/browserstack.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/cross-browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/cross-browser.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/extending.md -------------------------------------------------------------------------------- /docs/headless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/headless.md -------------------------------------------------------------------------------- /docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/hooks.md -------------------------------------------------------------------------------- /docs/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/how-it-works.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/matchers.md -------------------------------------------------------------------------------- /docs/parallel-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/parallel-testing.md -------------------------------------------------------------------------------- /docs/performance-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/performance-testing.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/steps-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-debug.md -------------------------------------------------------------------------------- /docs/steps-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-elements.md -------------------------------------------------------------------------------- /docs/steps-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-files.md -------------------------------------------------------------------------------- /docs/steps-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-forms.md -------------------------------------------------------------------------------- /docs/steps-generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-generators.md -------------------------------------------------------------------------------- /docs/steps-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-navigation.md -------------------------------------------------------------------------------- /docs/steps-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/steps-rest.md -------------------------------------------------------------------------------- /docs/testing-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/testing-rest-api.md -------------------------------------------------------------------------------- /docs/transformers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/docs/transformers.md -------------------------------------------------------------------------------- /functional-tests/dictionaries/test-dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/dictionaries/test-dictionary.js -------------------------------------------------------------------------------- /functional-tests/downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/downloads/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/downloads/example.xlsx -------------------------------------------------------------------------------- /functional-tests/features/content/operations_on_stored_variables.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/content/operations_on_stored_variables.feature -------------------------------------------------------------------------------- /functional-tests/features/content/validate_tabular_data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/content/validate_tabular_data.feature -------------------------------------------------------------------------------- /functional-tests/features/content/validate_tabular_data_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/content/validate_tabular_data_css.feature -------------------------------------------------------------------------------- /functional-tests/features/content/wait_for_element_dissapear.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/content/wait_for_element_dissapear.feature -------------------------------------------------------------------------------- /functional-tests/features/content/wait_for_element_dissapear_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/content/wait_for_element_dissapear_css.feature -------------------------------------------------------------------------------- /functional-tests/features/drag-and-drop/operations_on_elements.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/drag-and-drop/operations_on_elements.feature -------------------------------------------------------------------------------- /functional-tests/features/drag-and-drop/operations_on_elements_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/drag-and-drop/operations_on_elements_css.feature -------------------------------------------------------------------------------- /functional-tests/features/forms/fill_and_check_form.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/forms/fill_and_check_form.feature -------------------------------------------------------------------------------- /functional-tests/features/forms/fill_and_check_form_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/forms/fill_and_check_form_css.feature -------------------------------------------------------------------------------- /functional-tests/features/forms/fill_select.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/forms/fill_select.feature -------------------------------------------------------------------------------- /functional-tests/features/matchers/match_current_date.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/matchers/match_current_date.feature -------------------------------------------------------------------------------- /functional-tests/features/matchers/match_current_date_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/matchers/match_current_date_css.feature -------------------------------------------------------------------------------- /functional-tests/features/matchers/matchers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/matchers/matchers.feature -------------------------------------------------------------------------------- /functional-tests/features/matchers/matchers_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/matchers/matchers_css.feature -------------------------------------------------------------------------------- /functional-tests/features/navigation/navigate_to_given_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/navigation/navigate_to_given_page.feature -------------------------------------------------------------------------------- /functional-tests/features/navigation/navigate_to_given_page_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/navigation/navigate_to_given_page_css.feature -------------------------------------------------------------------------------- /functional-tests/features/navigation/switch-between-tabs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/navigation/switch-between-tabs.feature -------------------------------------------------------------------------------- /functional-tests/features/pages/verify_displayed_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/pages/verify_displayed_page.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_delete_request.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_delete_request.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_get_response.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_get_response.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_headers_setting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_headers_setting.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_patch_request.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_patch_request.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_post_form_data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_post_form_data.feature -------------------------------------------------------------------------------- /functional-tests/features/testing-api/testing_post_json.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/testing-api/testing_post_json.feature -------------------------------------------------------------------------------- /functional-tests/features/wait-for-elements/wait_for_form.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/wait-for-elements/wait_for_form.feature -------------------------------------------------------------------------------- /functional-tests/features/wait-for-elements/wait_for_form_css.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/wait-for-elements/wait_for_form_css.feature -------------------------------------------------------------------------------- /functional-tests/features/wait-for-elements/wait_for_table.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/features/wait-for-elements/wait_for_table.feature -------------------------------------------------------------------------------- /functional-tests/kakunin.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/kakunin.conf.js -------------------------------------------------------------------------------- /functional-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/package.json -------------------------------------------------------------------------------- /functional-tests/pages/absolutePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/absolutePage.js -------------------------------------------------------------------------------- /functional-tests/pages/additionalParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/additionalParams.js -------------------------------------------------------------------------------- /functional-tests/pages/appearSimpleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/appearSimpleForm.js -------------------------------------------------------------------------------- /functional-tests/pages/appearSimpleFormPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/appearSimpleFormPost.js -------------------------------------------------------------------------------- /functional-tests/pages/appearTabularData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/appearTabularData.js -------------------------------------------------------------------------------- /functional-tests/pages/buttonForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/buttonForm.js -------------------------------------------------------------------------------- /functional-tests/pages/dragAndDrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/dragAndDrop.js -------------------------------------------------------------------------------- /functional-tests/pages/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/google.js -------------------------------------------------------------------------------- /functional-tests/pages/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/main.js -------------------------------------------------------------------------------- /functional-tests/pages/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/matchers.js -------------------------------------------------------------------------------- /functional-tests/pages/navigationPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/navigationPages.js -------------------------------------------------------------------------------- /functional-tests/pages/simpleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/simpleForm.js -------------------------------------------------------------------------------- /functional-tests/pages/simpleFormPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/simpleFormPost.js -------------------------------------------------------------------------------- /functional-tests/pages/simpleSelectForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/simpleSelectForm.js -------------------------------------------------------------------------------- /functional-tests/pages/tabularData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/pages/tabularData.js -------------------------------------------------------------------------------- /functional-tests/regexes/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | validNumber: '\\d+', 3 | }; 4 | -------------------------------------------------------------------------------- /functional-tests/reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/reports/json-output-folder/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/reports/performance/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/reports/report/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/reports/report/features/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functional-tests/step_definitions/custom_json_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/step_definitions/custom_json_parser.js -------------------------------------------------------------------------------- /functional-tests/www/assets/kittens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/assets/kittens.jpg -------------------------------------------------------------------------------- /functional-tests/www/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/index.js -------------------------------------------------------------------------------- /functional-tests/www/jsonData/xlsxData.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/jsonData/xlsxData.router.js -------------------------------------------------------------------------------- /functional-tests/www/views/absolute/index.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/absolute/index.njs -------------------------------------------------------------------------------- /functional-tests/www/views/drag-and-drop/index.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/drag-and-drop/index.njs -------------------------------------------------------------------------------- /functional-tests/www/views/form/disappear.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/form/disappear.njs -------------------------------------------------------------------------------- /functional-tests/www/views/form/select.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/form/select.njs -------------------------------------------------------------------------------- /functional-tests/www/views/form/simple.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/form/simple.njs -------------------------------------------------------------------------------- /functional-tests/www/views/index.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/index.njs -------------------------------------------------------------------------------- /functional-tests/www/views/layout/default.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/layout/default.njs -------------------------------------------------------------------------------- /functional-tests/www/views/matchers/matchers.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/matchers/matchers.njs -------------------------------------------------------------------------------- /functional-tests/www/views/navigation/page.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/navigation/page.njs -------------------------------------------------------------------------------- /functional-tests/www/views/table/tabular-data.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/table/tabular-data.njs -------------------------------------------------------------------------------- /functional-tests/www/views/wait-for-appear/form.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/wait-for-appear/form.njs -------------------------------------------------------------------------------- /functional-tests/www/views/wait-for-appear/table.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/functional-tests/www/views/wait-for-appear/table.njs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/readme.md -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/comparators/comparator.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator.interface.ts -------------------------------------------------------------------------------- /src/comparators/comparator/date.comparator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator/date.comparator.spec.ts -------------------------------------------------------------------------------- /src/comparators/comparator/date.comparator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator/date.comparator.ts -------------------------------------------------------------------------------- /src/comparators/comparator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator/index.ts -------------------------------------------------------------------------------- /src/comparators/comparator/number.comparator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator/number.comparator.spec.ts -------------------------------------------------------------------------------- /src/comparators/comparator/number.comparator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparator/number.comparator.ts -------------------------------------------------------------------------------- /src/comparators/comparators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparators.spec.ts -------------------------------------------------------------------------------- /src/comparators/comparators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/comparators.ts -------------------------------------------------------------------------------- /src/comparators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/comparators/index.ts -------------------------------------------------------------------------------- /src/core/cli/cli.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/cli/cli.helper.spec.ts -------------------------------------------------------------------------------- /src/core/cli/cli.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/cli/cli.helper.ts -------------------------------------------------------------------------------- /src/core/cli/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/cli/initializer.ts -------------------------------------------------------------------------------- /src/core/config.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/config.helper.ts -------------------------------------------------------------------------------- /src/core/fs/delete-files.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/fs/delete-files.helper.ts -------------------------------------------------------------------------------- /src/core/fs/prepare-catalogs.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/fs/prepare-catalogs.helper.ts -------------------------------------------------------------------------------- /src/core/modules-loader.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/core/modules-loader.helper.ts -------------------------------------------------------------------------------- /src/core/prototypes.ts: -------------------------------------------------------------------------------- 1 | RegExp.escape = (text): string => { 2 | return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'); 3 | }; 4 | -------------------------------------------------------------------------------- /src/dictionaries/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/dictionaries/base.ts -------------------------------------------------------------------------------- /src/dictionaries/dictionaries.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/dictionaries/dictionaries.spec.ts -------------------------------------------------------------------------------- /src/dictionaries/dictionaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/dictionaries/dictionaries.ts -------------------------------------------------------------------------------- /src/dictionaries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/dictionaries/index.ts -------------------------------------------------------------------------------- /src/emails/adapter/mailtrap.client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/adapter/mailtrap.client.spec.ts -------------------------------------------------------------------------------- /src/emails/adapter/mailtrap.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/adapter/mailtrap.client.ts -------------------------------------------------------------------------------- /src/emails/email.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/email.service.spec.ts -------------------------------------------------------------------------------- /src/emails/email.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/email.service.ts -------------------------------------------------------------------------------- /src/emails/filter/current-user.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/current-user.filter.ts -------------------------------------------------------------------------------- /src/emails/filter/current-user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/current-user.spec.ts -------------------------------------------------------------------------------- /src/emails/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/index.ts -------------------------------------------------------------------------------- /src/emails/filter/minimal-email-size.filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/minimal-email-size.filter.spec.ts -------------------------------------------------------------------------------- /src/emails/filter/minimal-email-size.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/minimal-email-size.filter.ts -------------------------------------------------------------------------------- /src/emails/filter/text-fields.filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/text-fields.filter.spec.ts -------------------------------------------------------------------------------- /src/emails/filter/text-fields.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filter/text-fields.filter.ts -------------------------------------------------------------------------------- /src/emails/filters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filters.spec.ts -------------------------------------------------------------------------------- /src/emails/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/filters.ts -------------------------------------------------------------------------------- /src/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/emails/index.ts -------------------------------------------------------------------------------- /src/form-handlers/form-handler.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/form-handler.interface.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/checkbox.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/checkbox.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/ckeditor.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/ckeditor.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/custom-angular-select.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/custom-angular-select.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/default.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/default.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/file.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/file.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/index.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/radio.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/radio.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/select.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/select.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handler/uploaded-file.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handler/uploaded-file.handler.ts -------------------------------------------------------------------------------- /src/form-handlers/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/handlers.ts -------------------------------------------------------------------------------- /src/form-handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/form-handlers/index.ts -------------------------------------------------------------------------------- /src/generators/generator.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator.interface.ts -------------------------------------------------------------------------------- /src/generators/generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator/index.ts -------------------------------------------------------------------------------- /src/generators/generator/personalData.generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator/personalData.generator.spec.ts -------------------------------------------------------------------------------- /src/generators/generator/personalData.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator/personalData.generator.ts -------------------------------------------------------------------------------- /src/generators/generator/string-with-length.generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator/string-with-length.generator.spec.ts -------------------------------------------------------------------------------- /src/generators/generator/string-with-length.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generator/string-with-length.generator.ts -------------------------------------------------------------------------------- /src/generators/generators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generators.spec.ts -------------------------------------------------------------------------------- /src/generators/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/generators.ts -------------------------------------------------------------------------------- /src/generators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/generators/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/kakunin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/kakunin.d.ts -------------------------------------------------------------------------------- /src/matchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/index.ts -------------------------------------------------------------------------------- /src/matchers/matcher.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher.interface.ts -------------------------------------------------------------------------------- /src/matchers/matcher/attribute.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/attribute.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/attribute.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/attribute.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/clickable.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/clickable.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/clickable.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/clickable.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/currentDate.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/currentDate.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/currentDate.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/currentDate.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/index.ts -------------------------------------------------------------------------------- /src/matchers/matcher/invisible.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/invisible.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/invisible.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/invisible.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/not-clickable.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/not-clickable.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/not-clickable.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/not-clickable.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/present.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/present.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/present.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/present.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/index.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/index.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/regex-builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/regex-builder.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/regex-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/regex-builder.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/regex.ts -------------------------------------------------------------------------------- /src/matchers/matcher/regex-matcher/regexes/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/regex-matcher/regexes/default.ts -------------------------------------------------------------------------------- /src/matchers/matcher/text.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/text.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/text.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/text.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matcher/visible.matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/visible.matcher.spec.ts -------------------------------------------------------------------------------- /src/matchers/matcher/visible.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matcher/visible.matcher.ts -------------------------------------------------------------------------------- /src/matchers/matchers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matchers.spec.ts -------------------------------------------------------------------------------- /src/matchers/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/matchers/matchers.ts -------------------------------------------------------------------------------- /src/pages/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/pages/base.ts -------------------------------------------------------------------------------- /src/pages/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/pages/form.ts -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/protractor.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/protractor.conf.ts -------------------------------------------------------------------------------- /src/rest/api-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/rest/api-request.ts -------------------------------------------------------------------------------- /src/rest/api-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/rest/api-response.spec.ts -------------------------------------------------------------------------------- /src/rest/api-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/rest/api-response.ts -------------------------------------------------------------------------------- /src/rest/rest-api-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/rest/rest-api-service.ts -------------------------------------------------------------------------------- /src/step_definitions/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/api.ts -------------------------------------------------------------------------------- /src/step_definitions/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/debug.ts -------------------------------------------------------------------------------- /src/step_definitions/elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/elements.ts -------------------------------------------------------------------------------- /src/step_definitions/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/email.ts -------------------------------------------------------------------------------- /src/step_definitions/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/file.ts -------------------------------------------------------------------------------- /src/step_definitions/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/form.ts -------------------------------------------------------------------------------- /src/step_definitions/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/generators.ts -------------------------------------------------------------------------------- /src/step_definitions/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/navigation.ts -------------------------------------------------------------------------------- /src/step_definitions/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/performance.ts -------------------------------------------------------------------------------- /src/step_definitions/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/step_definitions/tabs.ts -------------------------------------------------------------------------------- /src/tests/dictionaries/fake-dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/tests/dictionaries/fake-dictionary.ts -------------------------------------------------------------------------------- /src/tests/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/tests/init.ts -------------------------------------------------------------------------------- /src/tests/reports/performance/incorrect-performance-report.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/tests/reports/performance/incorrect-performance-report.har -------------------------------------------------------------------------------- /src/tests/reports/performance/performance-report.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/tests/reports/performance/performance-report.har -------------------------------------------------------------------------------- /src/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/index.ts -------------------------------------------------------------------------------- /src/transformers/transformer.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer.interface.ts -------------------------------------------------------------------------------- /src/transformers/transformer/dictionary.transformer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/dictionary.transformer.spec.ts -------------------------------------------------------------------------------- /src/transformers/transformer/dictionary.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/dictionary.transformer.ts -------------------------------------------------------------------------------- /src/transformers/transformer/generator.transformer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/generator.transformer.spec.ts -------------------------------------------------------------------------------- /src/transformers/transformer/generator.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/generator.transformer.ts -------------------------------------------------------------------------------- /src/transformers/transformer/variable-store.transformer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/variable-store.transformer.spec.ts -------------------------------------------------------------------------------- /src/transformers/transformer/variable-store.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformer/variable-store.transformer.ts -------------------------------------------------------------------------------- /src/transformers/transformers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformers.spec.ts -------------------------------------------------------------------------------- /src/transformers/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/transformers/transformers.ts -------------------------------------------------------------------------------- /src/web/browsers/browsers-config.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/browsers/browsers-config.helper.ts -------------------------------------------------------------------------------- /src/web/browsers/browserstack-config.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/browsers/browserstack-config.helper.ts -------------------------------------------------------------------------------- /src/web/browsers/create-firefox-profile.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/browsers/create-firefox-profile.helper.ts -------------------------------------------------------------------------------- /src/web/browsers/get-browser-drivers.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/browsers/get-browser-drivers.helper.ts -------------------------------------------------------------------------------- /src/web/browsers/safari-browser-configurator.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/browsers/safari-browser-configurator.helper.ts -------------------------------------------------------------------------------- /src/web/cucumber/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/config.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/clear-download.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/clear-download.hook.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/clear-variables.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/clear-variables.hook.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/hook.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/hook.interface.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/hooks.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/index.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/reload-fixtures.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/reload-fixtures.hook.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/reload-user.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/reload-user.hook.ts -------------------------------------------------------------------------------- /src/web/cucumber/hooks/take-screenshots.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/hooks/take-screenshots.hook.ts -------------------------------------------------------------------------------- /src/web/cucumber/wait-for-condition.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/cucumber/wait-for-condition.helper.ts -------------------------------------------------------------------------------- /src/web/fixtures/fixtures-loader.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/fixtures/fixtures-loader.helper.ts -------------------------------------------------------------------------------- /src/web/fs/download-checker.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/fs/download-checker.helper.ts -------------------------------------------------------------------------------- /src/web/fs/file-manager.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/fs/file-manager.helper.ts -------------------------------------------------------------------------------- /src/web/parallel/chunk-specs.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/parallel/chunk-specs.helper.spec.ts -------------------------------------------------------------------------------- /src/web/parallel/chunk-specs.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/parallel/chunk-specs.helper.ts -------------------------------------------------------------------------------- /src/web/parallel/prepare-browser-instance-specs.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/parallel/prepare-browser-instance-specs.helper.ts -------------------------------------------------------------------------------- /src/web/parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/parameters.ts -------------------------------------------------------------------------------- /src/web/performance/JSON-performance-report-parser.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/performance/JSON-performance-report-parser.helper.spec.ts -------------------------------------------------------------------------------- /src/web/performance/JSON-performance-report-parser.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/performance/JSON-performance-report-parser.helper.ts -------------------------------------------------------------------------------- /src/web/performance/time-to-first-byte-analyser.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/performance/time-to-first-byte-analyser.helper.spec.ts -------------------------------------------------------------------------------- /src/web/performance/time-to-first-byte-analyser.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/performance/time-to-first-byte-analyser.helper.ts -------------------------------------------------------------------------------- /src/web/url-parser.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/url-parser.helper.spec.ts -------------------------------------------------------------------------------- /src/web/url-parser.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/url-parser.helper.ts -------------------------------------------------------------------------------- /src/web/user-provider.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/user-provider.helper.ts -------------------------------------------------------------------------------- /src/web/variable-store.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/variable-store.helper.spec.ts -------------------------------------------------------------------------------- /src/web/variable-store.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/src/web/variable-store.helper.ts -------------------------------------------------------------------------------- /templates/example.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/example.feature -------------------------------------------------------------------------------- /templates/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/generator.js -------------------------------------------------------------------------------- /templates/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/hook.js -------------------------------------------------------------------------------- /templates/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/login.js -------------------------------------------------------------------------------- /templates/matcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/matcher.js -------------------------------------------------------------------------------- /templates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/page.js -------------------------------------------------------------------------------- /templates/regex.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: '(Bob|John|Paul)' 3 | }; 4 | -------------------------------------------------------------------------------- /templates/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/templates/steps.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/tslint.json -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/README.md -------------------------------------------------------------------------------- /website/build/Kakunin/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/css/main.css -------------------------------------------------------------------------------- /website/build/Kakunin/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/css/prism.css -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/configuration.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/configuration/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/cross-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/cross-browser.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/cross-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/cross-browser/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/docker.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/docker/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/extending.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/extending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/extending/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/how-it-works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/how-it-works.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/how-it-works/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/how-it-works/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/matchers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/matchers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/matchers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/matchers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/parallel-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/parallel-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/parallel-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/parallel-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/performance-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/performance-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/performance-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/performance-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/quickstart.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/quickstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/quickstart/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-debug.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-debug/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-elements.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-elements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-elements/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-files.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-files/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-forms.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-forms/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-generators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-generators.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-generators/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-navigation.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/steps-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/steps-navigation/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/transformers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/transformers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/2.4.0/transformers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/2.4.0/transformers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/configuration.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/configuration/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/cross-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/cross-browser.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/cross-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/cross-browser/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/docker.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/docker/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/extending.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/extending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/extending/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/how-it-works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/how-it-works.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/how-it-works/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/how-it-works/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/matchers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/matchers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/matchers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/matchers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/browserstack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/browserstack.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/browserstack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/browserstack/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/configuration.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/configuration/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/cross-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/cross-browser.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/cross-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/cross-browser/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/docker.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/docker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/docker/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/extending.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/extending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/extending/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/headless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/headless.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/headless/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/headless/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/hooks.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/hooks/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/how-it-works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/how-it-works.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/how-it-works/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/how-it-works/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/matchers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/matchers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/matchers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/matchers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/parallel-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/parallel-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/parallel-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/parallel-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/performance-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/performance-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/performance-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/performance-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/quickstart.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/quickstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/quickstart/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-debug.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-debug/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-elements.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-elements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-elements/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-files.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-files/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-forms.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-forms/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-generators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-generators.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-generators/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-navigation.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-navigation/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-rest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-rest.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/steps-rest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/steps-rest/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/testing-rest-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/testing-rest-api.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/testing-rest-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/testing-rest-api/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/transformers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/transformers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/next/transformers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/next/transformers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/parallel-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/parallel-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/parallel-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/parallel-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/performance-testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/performance-testing.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/performance-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/performance-testing/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/quickstart.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/quickstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/quickstart/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-debug.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-debug/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-elements.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-elements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-elements/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-files.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-files/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-forms.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-forms/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-generators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-generators.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-generators/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-navigation.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/steps-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/steps-navigation/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/transformers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/transformers.html -------------------------------------------------------------------------------- /website/build/Kakunin/docs/transformers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/docs/transformers/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/en/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/en/versions.html -------------------------------------------------------------------------------- /website/build/Kakunin/en/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/en/versions/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/img/favicon/favicon.ico -------------------------------------------------------------------------------- /website/build/Kakunin/img/kakunin_ogImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/img/kakunin_ogImage.jpg -------------------------------------------------------------------------------- /website/build/Kakunin/img/kakunin_white_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/img/kakunin_white_logo.svg -------------------------------------------------------------------------------- /website/build/Kakunin/img/kakunin_white_logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/img/kakunin_white_logo_text.svg -------------------------------------------------------------------------------- /website/build/Kakunin/img/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/img/language.svg -------------------------------------------------------------------------------- /website/build/Kakunin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/index.html -------------------------------------------------------------------------------- /website/build/Kakunin/js/codetabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/js/codetabs.js -------------------------------------------------------------------------------- /website/build/Kakunin/js/scrollSpy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/js/scrollSpy.js -------------------------------------------------------------------------------- /website/build/Kakunin/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/sitemap.xml -------------------------------------------------------------------------------- /website/build/Kakunin/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/versions.html -------------------------------------------------------------------------------- /website/build/Kakunin/versions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/build/Kakunin/versions/index.html -------------------------------------------------------------------------------- /website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/core/Footer.js -------------------------------------------------------------------------------- /website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/i18n/en.json -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/en/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/pages/en/versions.js -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/siteConfig.js -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /website/static/img/kakunin_ogImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/img/kakunin_ogImage.jpg -------------------------------------------------------------------------------- /website/static/img/kakunin_white_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/img/kakunin_white_logo.svg -------------------------------------------------------------------------------- /website/static/img/kakunin_white_logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/img/kakunin_white_logo_text.svg -------------------------------------------------------------------------------- /website/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/static/index.html -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/configuration.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/cross-browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/cross-browser.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/docker.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/extending.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/how-it-works.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/index.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/matchers.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/parallel-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/parallel-testing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/performance-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/performance-testing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/quickstart.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-debug.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-elements.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-files.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-forms.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-generators.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/steps-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/steps-navigation.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.4.0/transformers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.4.0/transformers.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.5.0/steps-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_docs/version-2.5.0/steps-elements.md -------------------------------------------------------------------------------- /website/versioned_sidebars/version-2.4.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versioned_sidebars/version-2.4.0-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSoftwareHouse/Kakunin/HEAD/website/versions.json --------------------------------------------------------------------------------