Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #93 from marshallbrekka/master
Browse files Browse the repository at this point in the history
Fix taxi/elements to always return a seq of elements, even when its argument is a single element-like
  • Loading branch information
semperos committed Feb 1, 2013
2 parents f8e535a + 35cdec5 commit 8ba9424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj_webdriver/taxi.clj
Expand Up @@ -230,7 +230,7 @@
([q] (elements *driver* q))
([driver q]
(if (element-like? q)
q
(lazy-seq (list q))
(*finder-fn* driver q))))

;; ## Driver functions ##
Expand Down

0 comments on commit 8ba9424

Please sign in to comment.