├── .github ├── dependabot.yml ├── release_drafter_config.yml └── workflows │ ├── master.yml │ ├── release.yml │ └── release_drafter.yml ├── LICENSE ├── README.md ├── console ├── bumper_ci_service.ts └── bumper_ci_service_files.ts ├── deps.ts ├── egg.json ├── examples └── firefox_client_example.ts ├── logo.svg ├── mod.ts ├── src ├── client.ts ├── element.ts ├── interfaces.ts ├── page.ts ├── protocol.ts ├── types.ts └── utility.ts ├── tests ├── browser_list.ts ├── console │ └── bumper_test.ts ├── deps.ts ├── integration │ ├── csrf_protected_pages_test.ts │ ├── docker_test │ │ ├── custom_scripts │ │ │ └── remote_chrome.sh │ │ ├── docker-compose.yml │ │ └── drivers.dockerfile │ └── manipulate_page_test.ts ├── server.ts └── unit │ ├── Screenshots │ └── .gitkeep │ ├── client_test.ts │ ├── element_test.ts │ └── page_test.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release_drafter_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/.github/release_drafter_config.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/.github/workflows/release_drafter.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/README.md -------------------------------------------------------------------------------- /console/bumper_ci_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/console/bumper_ci_service.ts -------------------------------------------------------------------------------- /console/bumper_ci_service_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/console/bumper_ci_service_files.ts -------------------------------------------------------------------------------- /deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/deps.ts -------------------------------------------------------------------------------- /egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/egg.json -------------------------------------------------------------------------------- /examples/firefox_client_example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/examples/firefox_client_example.ts -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/logo.svg -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/mod.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/element.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/page.ts -------------------------------------------------------------------------------- /src/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/protocol.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | export type Browsers = "firefox" | "chrome"; 2 | -------------------------------------------------------------------------------- /src/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/src/utility.ts -------------------------------------------------------------------------------- /tests/browser_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/browser_list.ts -------------------------------------------------------------------------------- /tests/console/bumper_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/console/bumper_test.ts -------------------------------------------------------------------------------- /tests/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/deps.ts -------------------------------------------------------------------------------- /tests/integration/csrf_protected_pages_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/integration/csrf_protected_pages_test.ts -------------------------------------------------------------------------------- /tests/integration/docker_test/custom_scripts/remote_chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/integration/docker_test/custom_scripts/remote_chrome.sh -------------------------------------------------------------------------------- /tests/integration/docker_test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/integration/docker_test/docker-compose.yml -------------------------------------------------------------------------------- /tests/integration/docker_test/drivers.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/integration/docker_test/drivers.dockerfile -------------------------------------------------------------------------------- /tests/integration/manipulate_page_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/integration/manipulate_page_test.ts -------------------------------------------------------------------------------- /tests/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/server.ts -------------------------------------------------------------------------------- /tests/unit/Screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/client_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/unit/client_test.ts -------------------------------------------------------------------------------- /tests/unit/element_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/unit/element_test.ts -------------------------------------------------------------------------------- /tests/unit/page_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tests/unit/page_test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drashland/sinco/HEAD/tsconfig.json --------------------------------------------------------------------------------