Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tatut/clj-chrome-devtools
Clojure API for controlling a Chrome DevTools remote
https://github.com/tatut/clj-chrome-devtools
Last synced: 7 days ago
JSON representation
Clojure API for controlling a Chrome DevTools remote
- Host: GitHub
- URL: https://github.com/tatut/clj-chrome-devtools
- Owner: tatut
- License: mit
- Created: 2017-08-20T12:50:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T06:09:07.000Z (3 months ago)
- Last Synced: 2024-11-30T08:07:27.165Z (14 days ago)
- Language: Clojure
- Size: 630 KB
- Stars: 130
- Watchers: 7
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-chrome-devtools - clj-chrome-devtools - The CDP wrapper API is autogenerated and will be updated when CDP protocol changes. (Chrome DevTools Protocol / Libraries for driving the protocol (or a layer above))
README
# clj-chrome-devtools
[![Clojars Project](https://img.shields.io/clojars/v/clj-chrome-devtools.svg)](https://clojars.org/clj-chrome-devtools) ![Tests](https://github.com/tatut/clj-chrome-devtools/workflows/Push/badge.svg)
clj-chrome-devtools is a simple library for controlling a headless Chrome with the
Chrome DevTools Protocol. The protocol is based on a websocket connection between
clojure and chrome. All the functions are automatically generated from the protocol
specification JSON files.## Quick start with Babashka
See [bb.clj](https://github.com/tatut/clj-chrome-devtools/blob/master/bb.clj) file for a quick
script that can be used from [Babashka](https://babashka.org).## Goals
The goal of the project is to provide a general purpose library for using headless chrome, both in
production use and in testing scenarios.The CDP part, which is autogenerated, should be stable and will be updated when CDP protocol changes.
The higher level automation utilities is where most of the work is done and new automation utilities are welcome.
PRs welcome, just follow the common pattern of providing two arities: one for using the global automation context and
one where it is provided as the first parameter.## API Docs
See codox generated [API docs](https://tatut.github.io/clj-chrome-devtools/api/index.html).
All the low-level auto-generated commands from Chrome Devtools Protocol are in `clj-chrome-devtools.command.*`
namespaces. Note: to use the low-level API you need to implement event handlers for listening to data Chrome sends
the client.There is the beginnings of a rudimentary higher level API in `clj-chrome-devtools.automation`.
There is also a `clojure.test` fixture to run tests with a fresh headless chrome in `clj-chrome-devtools.automation.fixture`.## Example usage
For using the higher level API for screen scraping and browser testing, see [chrome_test.clj](https://github.com/tatut/clj-chrome-devtools/blob/master/test/clj_chrome_devtools/chrome_test.clj) file.
The following shows a simple REPL usage, navigating to a page and inspecting content.
The connection is the first parameter of all calls. You can also set the connection to use with
`set-current-connection!` and omit the connection parameter for convenience.```clojure
clj-chrome-devtools.core> (def c (connect "localhost" 9222))
#'clj-chrome-devtools.core/c
clj-chrome-devtools.core> (require '[clj-chrome-devtools.commands.page :as page]
'[clj-chrome-devtools.commands.dom :as dom])
nil
clj-chrome-devtools.core> (page/navigate c {:url "http://webjure.org/"})
{:frame-id "68439.1"}
clj-chrome-devtools.core> (dom/get-document c {:depth 1})
{:root
{:children
[{:node-type 1,
:node-id 2,
:backend-node-id 4,
:parent-id 1,
:node-name "HTML",
:node-value "",
:frame-id "68439.1",
:local-name "html",
:child-node-count 2,
:attributes []}],
:document-url "http://webjure.org/",
:node-type 9,
:base-url "http://webjure.org/",
:node-id 1,
:backend-node-id 3,
:node-name "#document",
:node-value "",
:xml-version "",
:local-name "",
:child-node-count 1}}
clj-chrome-devtools.core> (use 'clojure.repl)
nil
clj-chrome-devtools.core> (doc dom/get-outer-html)
-------------------------
clj-chrome-devtools.commands.dom/get-outer-html
([] [{:as params, :keys [node-id]}] [connection {:as params, :keys [node-id]}])
Returns node's HTML markup.Parameters map keys:
:node-id Id of the node to get markup for.Return map keys:
:outer-html Outer HTML markup.
nil
clj-chrome-devtools.core> (dom/get-outer-html c {:node-id 1})
{:outer-html
"\n Webjure\n \n \n Coming soon-ish!\n \n\n"}
```## Running ClojureScript test suite with `clj-chrome-devtools`
The `clj-chrome-devtools.cljs.test` contains a function that can be used to build and run
ClojureScript tests as part of your Clojure test without needing `doo` plugin or `karma` installed.See [example in Tuck project](https://github.com/tatut/tuck/blob/master/test/tuck/chrome_test.clj).
The `build-and-test` function is meant to be called inside your test and it will build the specified
ClojureScript build that is defined in `project.clj` (e.g. "test") with an added test runner that
requires the specified namespaces and runs tests in them.