Public Vars

Back

with-safari (clj)

(source)

macro

(with-safari opts? bind & body)
Executes `body` with a Safari driver session bound to `bind`. Driver is automatically launched and terminated (even if an exception occurs). `opts` map can be omitted, see [Driver Options](/doc/01-user-guide.adoc#driver-options). Example: ```Clojure (with-safari driver (go driver "https://clojure.org")) ```

Examples