Public Vars

Back

query-all-from (clj)

(source)

function

(query-all-from driver el q)
Use `driver` to return a vector of elements satisfying query `q`, starting the search at the element specified by `el`. If `q` is a vector of queries, then the search starts from `el` and identifies single candidates for the first item in `q`, and then uses that element as the root of the next search, with the exception of the last item, which is then searched for all matching elements. `query-all-from` is similar to `query-all` but starts the search from `el` rather than the DOM root. See [[query]] for details on `q`. https://www.w3.org/TR/webdriver2/#dfn-find-elements-from-element

Examples