├── .editorconfig ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md ├── assets ├── NavaliaQL.gif ├── logo-bw.png ├── logo-bw.svg ├── logo-color.png ├── logo-color.svg ├── logo-n.png ├── logo.ai ├── n-bw.png └── n-color.png ├── bin └── navalia.js ├── docs ├── 404.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _docs │ ├── Chrome │ │ ├── attr.md │ │ ├── auth.md │ │ ├── back.md │ │ ├── check.md │ │ ├── clear.md │ │ ├── click.md │ │ ├── cookie.md │ │ ├── coverage.md │ │ ├── done.md │ │ ├── end.md │ │ ├── evaluate.md │ │ ├── exists.md │ │ ├── fetch.md │ │ ├── focus.md │ │ ├── forward.md │ │ ├── goto.md │ │ ├── header.md │ │ ├── html.md │ │ ├── inject.md │ │ ├── pageload.md │ │ ├── pdf.md │ │ ├── reload.md │ │ ├── save.md │ │ ├── screenshot.md │ │ ├── scroll.md │ │ ├── select.md │ │ ├── size.md │ │ ├── text.md │ │ ├── type.md │ │ ├── uncheck.md │ │ ├── visible.md │ │ └── wait.md │ ├── _defaults.md │ ├── chrome │ │ └── constructor.md │ └── navalia │ │ ├── constructor.md │ │ ├── kill.md │ │ └── run.md ├── _layouts │ └── default.html ├── _plugins │ └── replace-regex.rb ├── _sass │ ├── _code.scss │ ├── _layout.scss │ ├── _mixins.scss │ ├── _normalize.scss │ ├── _pygments.scss │ ├── _tables.scss │ └── _typography.scss ├── apple-touch-icon.png ├── changelog.html ├── css │ ├── fonts │ │ ├── 3423CF_0_0.eot │ │ ├── 3423CF_0_0.ttf │ │ ├── 3423CF_0_0.woff │ │ └── 3423CF_0_0.woff2 │ └── main.scss ├── favicon.ico ├── favicon.png ├── index.md ├── logo-color.svg ├── menu.svg ├── robots.txt ├── scripts │ ├── lunr.min.js │ └── search.js ├── search.html ├── siteicon.png └── touch-icon.png ├── integration ├── __snapshots__ │ └── api.test.ts.snap └── api.test.ts ├── package.json ├── src ├── Chrome.ts ├── Navalia.ts ├── graphql │ ├── ChromeLoader.ts │ ├── dom-types.ts │ ├── schema.ts │ ├── server.ts │ └── types │ │ ├── attr.ts │ │ ├── check.ts │ │ ├── click.ts │ │ ├── cookie.ts │ │ ├── coverage.ts │ │ ├── exists.ts │ │ ├── focus.ts │ │ ├── goto.ts │ │ ├── html.ts │ │ ├── pageload.ts │ │ ├── pdf.ts │ │ ├── screenshot.ts │ │ ├── text.ts │ │ ├── type.ts │ │ ├── uncheck.ts │ │ ├── visible.ts │ │ └── wait.ts ├── index.ts └── util │ ├── ChromeHelper.ts │ ├── __tests__ │ ├── ChromeHelper.test.ts │ ├── __snapshots__ │ │ └── ChromeHelper.test.ts.snap │ └── chrome.test.ts │ ├── chrome.ts │ └── dom.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/README.md -------------------------------------------------------------------------------- /assets/NavaliaQL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/NavaliaQL.gif -------------------------------------------------------------------------------- /assets/logo-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo-bw.png -------------------------------------------------------------------------------- /assets/logo-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo-bw.svg -------------------------------------------------------------------------------- /assets/logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo-color.png -------------------------------------------------------------------------------- /assets/logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo-color.svg -------------------------------------------------------------------------------- /assets/logo-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo-n.png -------------------------------------------------------------------------------- /assets/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/logo.ai -------------------------------------------------------------------------------- /assets/n-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/n-bw.png -------------------------------------------------------------------------------- /assets/n-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/assets/n-color.png -------------------------------------------------------------------------------- /bin/navalia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/bin/navalia.js -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_docs/Chrome/attr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/attr.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/auth.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/back.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/back.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/check.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/clear.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/click.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/cookie.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/coverage.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/done.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/done.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/end.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/evaluate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/evaluate.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/exists.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/fetch.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/focus.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/forward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/forward.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/goto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/goto.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/header.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/html.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/inject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/inject.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/pageload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/pageload.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/pdf.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/reload.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/save.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/screenshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/screenshot.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/scroll.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/select.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/size.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/text.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/type.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/uncheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/uncheck.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/visible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/visible.md -------------------------------------------------------------------------------- /docs/_docs/Chrome/wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/Chrome/wait.md -------------------------------------------------------------------------------- /docs/_docs/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3 | category: 4 | order: 1 5 | --- 6 | -------------------------------------------------------------------------------- /docs/_docs/chrome/constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/chrome/constructor.md -------------------------------------------------------------------------------- /docs/_docs/navalia/constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/navalia/constructor.md -------------------------------------------------------------------------------- /docs/_docs/navalia/kill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/navalia/kill.md -------------------------------------------------------------------------------- /docs/_docs/navalia/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_docs/navalia/run.md -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_plugins/replace-regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_plugins/replace-regex.rb -------------------------------------------------------------------------------- /docs/_sass/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_code.scss -------------------------------------------------------------------------------- /docs/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_layout.scss -------------------------------------------------------------------------------- /docs/_sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_mixins.scss -------------------------------------------------------------------------------- /docs/_sass/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_normalize.scss -------------------------------------------------------------------------------- /docs/_sass/_pygments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_pygments.scss -------------------------------------------------------------------------------- /docs/_sass/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_tables.scss -------------------------------------------------------------------------------- /docs/_sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/_sass/_typography.scss -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/changelog.html -------------------------------------------------------------------------------- /docs/css/fonts/3423CF_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/css/fonts/3423CF_0_0.eot -------------------------------------------------------------------------------- /docs/css/fonts/3423CF_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/css/fonts/3423CF_0_0.ttf -------------------------------------------------------------------------------- /docs/css/fonts/3423CF_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/css/fonts/3423CF_0_0.woff -------------------------------------------------------------------------------- /docs/css/fonts/3423CF_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/css/fonts/3423CF_0_0.woff2 -------------------------------------------------------------------------------- /docs/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/css/main.scss -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/logo-color.svg -------------------------------------------------------------------------------- /docs/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/menu.svg -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/scripts/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/scripts/lunr.min.js -------------------------------------------------------------------------------- /docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/scripts/search.js -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/siteicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/siteicon.png -------------------------------------------------------------------------------- /docs/touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/docs/touch-icon.png -------------------------------------------------------------------------------- /integration/__snapshots__/api.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/integration/__snapshots__/api.test.ts.snap -------------------------------------------------------------------------------- /integration/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/integration/api.test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/package.json -------------------------------------------------------------------------------- /src/Chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/Chrome.ts -------------------------------------------------------------------------------- /src/Navalia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/Navalia.ts -------------------------------------------------------------------------------- /src/graphql/ChromeLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/ChromeLoader.ts -------------------------------------------------------------------------------- /src/graphql/dom-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/dom-types.ts -------------------------------------------------------------------------------- /src/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/schema.ts -------------------------------------------------------------------------------- /src/graphql/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/server.ts -------------------------------------------------------------------------------- /src/graphql/types/attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/attr.ts -------------------------------------------------------------------------------- /src/graphql/types/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/check.ts -------------------------------------------------------------------------------- /src/graphql/types/click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/click.ts -------------------------------------------------------------------------------- /src/graphql/types/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/cookie.ts -------------------------------------------------------------------------------- /src/graphql/types/coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/coverage.ts -------------------------------------------------------------------------------- /src/graphql/types/exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/exists.ts -------------------------------------------------------------------------------- /src/graphql/types/focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/focus.ts -------------------------------------------------------------------------------- /src/graphql/types/goto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/goto.ts -------------------------------------------------------------------------------- /src/graphql/types/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/html.ts -------------------------------------------------------------------------------- /src/graphql/types/pageload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/pageload.ts -------------------------------------------------------------------------------- /src/graphql/types/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/pdf.ts -------------------------------------------------------------------------------- /src/graphql/types/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/screenshot.ts -------------------------------------------------------------------------------- /src/graphql/types/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/text.ts -------------------------------------------------------------------------------- /src/graphql/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/type.ts -------------------------------------------------------------------------------- /src/graphql/types/uncheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/uncheck.ts -------------------------------------------------------------------------------- /src/graphql/types/visible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/visible.ts -------------------------------------------------------------------------------- /src/graphql/types/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/graphql/types/wait.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util/ChromeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/ChromeHelper.ts -------------------------------------------------------------------------------- /src/util/__tests__/ChromeHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/__tests__/ChromeHelper.test.ts -------------------------------------------------------------------------------- /src/util/__tests__/__snapshots__/ChromeHelper.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/__tests__/__snapshots__/ChromeHelper.test.ts.snap -------------------------------------------------------------------------------- /src/util/__tests__/chrome.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/__tests__/chrome.test.ts -------------------------------------------------------------------------------- /src/util/chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/chrome.ts -------------------------------------------------------------------------------- /src/util/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/src/util/dom.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgriffith/navalia/HEAD/yarn.lock --------------------------------------------------------------------------------