Liking cljdoc? Tell your friends :D

etaoin.dev

Chrome devtools features

Chrome devtools features
raw docstring

ajax?clj

(ajax? request)

Return true when request is XHR.

Return true when `request` is XHR.
sourceraw docstring

get-ajaxclj

(get-ajax driver)

Have driver return a list of XHR (Ajax) HTTP requests made by the browser.

Works only when perfLoggingPrefs is enabled, see DevTools.

Have `driver` return a list of XHR (Ajax) HTTP requests made by the browser.

Works only when `perfLoggingPrefs` is enabled, see [DevTools](/doc/01-user-guide.adoc#devtools).
sourceraw docstring

get-performance-logsclj

(get-performance-logs driver)

Have driver return a seq of special performance logs from the dev console.

Works only when perfLoggingPrefs is enabled, see DevTools.

Have `driver` return a seq of special performance logs from the dev console.

Works only when `perfLoggingPrefs` is enabled, see [DevTools](/doc/01-user-guide.adoc#devtools).
sourceraw docstring

get-requestsclj

(get-requests driver)

Have driver return a list of HTTP requests made by the browser.

Works only when perfLoggingPrefs is enabled, see DevTools.

Have `driver` return a list of HTTP requests made by the browser.

Works only when `perfLoggingPrefs` is enabled, see [DevTools](/doc/01-user-guide.adoc#devtools).
sourceraw docstring

logs->ajaxclj

(logs->ajax logs)

The same as logs->requests but returns only AJAX requests.

The same as [[logs->requests]] but returns only AJAX requests.
sourceraw docstring

logs->requestsclj

(logs->requests logs)

Return list of log entries logs converted to requests.

Return list of log entries `logs` converted to requests.
sourceraw docstring

request-done?clj

(request-done? request)

Return true when request has concluded. Completion does not indicate success. See request-success?, request-failed?

Return true when `request` has concluded.
Completion does not indicate success. See [[request-success?]], [[request-failed?]]
sourceraw docstring

request-failed?clj

(request-failed? request)

Return true when request has failed. Does not indicate completion, see request-done?

Return true when `request` has failed. Does not indicate completion, see [[request-done?]]
sourceraw docstring

request-success?clj

Return true when request has completed and not failed.

Return true when `request` has completed and not failed.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close