{"id":15199828,"url":"https://github.com/agilecreativity/etuk","last_synced_at":"2026-03-07T11:03:08.120Z","repository":{"id":62432582,"uuid":"88804964","full_name":"agilecreativity/etuk","owner":"agilecreativity","description":"Selenium wrapper to automate commonly used apis.","archived":false,"fork":false,"pushed_at":"2017-12-13T07:27:51.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-12T17:37:46.838Z","etag":null,"topics":["automation","clojure","clojure-wrapper","selenium-webdriver"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agilecreativity.png","metadata":{"files":{"readme":"README.org","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-20T00:56:45.000Z","updated_at":"2019-04-08T16:03:54.000Z","dependencies_parsed_at":"2022-11-01T20:47:09.406Z","dependency_job_id":null,"html_url":"https://github.com/agilecreativity/etuk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agilecreativity/etuk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilecreativity%2Fetuk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilecreativity%2Fetuk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilecreativity%2Fetuk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilecreativity%2Fetuk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agilecreativity","download_url":"https://codeload.github.com/agilecreativity/etuk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilecreativity%2Fetuk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30212103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T09:02:10.694Z","status":"ssl_error","status_checked_at":"2026-03-07T09:02:08.429Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","clojure","clojure-wrapper","selenium-webdriver"],"created_at":"2024-09-28T02:02:57.319Z","updated_at":"2026-03-07T11:03:08.104Z","avatar_url":"https://github.com/agilecreativity.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"** etuk - Simple driver of Selenium via Webica\n\n#+ATTR_HTML: title=\"Clojars\"\n[[https://clojars.org/etuk][file:https://img.shields.io/clojars/v/etuk.svg]]\n\n#+ATTR_HTML: title=\"Jarkeeper\"\n[[https://jarkeeper.com/agilecreativity/etuk][file:https://jarkeeper.com/agilecreativity/etuk/status.svg]]\n\nClojure Selenium driver via Webica wrapper in Clojure.\n\n*** Basic Installation\n\nFor this to work just open your command line and\n**** You will need to make sure that =chromedriver= is installed in =/usr/local/bin=\n**** For Firefox drive you will need =geckodriver= and must be installed to =/usr/local/bin=\n\n #+BEGIN_SRC sh\n cd ~/projects/\n\n # Clone the webica project locally\n git clone git@github.com:tmarble/webica.git\n\n # Build the library for use locally\n cd ~/projects/webica \u0026\u0026 boot build-jar\n\n # Clone the patched version of webica project\n git clone git@github.com:agilecreativity/etuk.git\n\n # Then build it to your local repository\n cd ~/projects/etuk \u0026\u0026 boot build-jar\n\n # For example of the api try =src/etuk/examples/*.clj= for more detail\n boot download-selenium\n\n # To login to Github - need to setup sample configuration (edn file)\n # Adjust to your local path e.g. ~/Dropbox/login/github.edn\n # with content like the following\n # { :username \"your-github-user\"\n #   :password \"your-password\"\n #   :url \"https://github.com/login\" }\n boot login-github\n #+END_SRC\n\n*** Basic Usage\n\n- Excerpted from [[src/etuk/core.clj][core.clj]]\n\n#+BEGIN_SRC clojure\n  (ns etuk.core\n    (:require [etuk.browser-utils :refer [start-chrome-session start-firefox-session] :as but]\n              [etuk.core-wait :refer :all :as cwt]\n              [etuk.core-navigator :refer :all :as cnv]\n              [webica.remote-web-driver :as browser]\n              [webica.expected-conditions :as ec]\n              [webica.web-element :as element])\n    (:gen-class))\n\n  (defn download-selenium-jars\n    []\n    (start-chrome-session)\n    (browser/get \"http://www.seleniumhq.org/\")\n\n    ;; Click the big Download link\n    (cnv/navigate :wdriver (cwt/get-instance)\n                  :wfn      ec/presence-of-element-located\n                  :type     :css-selector\n                  :expr     \"#sidebar \u003e div.downloadBox \u003e a\"\n                  :act-name element/click\n                  :act-arg  nil)\n\n    ;; Then click on the download Selenium Java driver 3.3.0 version link\n    (cnv/navigate :wdriver (cwt/get-instance)\n                  :wfn  ec/presence-of-element-located\n                  :type :css-selector\n                  :expr \"#mainContent \u003e table:nth-child(13) \u003e tbody \u003e tr:nth-child(1) \u003e td:nth-child(4) \u003e a\"\n                  :act-name element/click\n                  :act-arg  nil))\n\n  (defn -main [\u0026 args]\n    (try\n      (download-selenium-jars)\n      (catch Exception e\n        (.printStackTrace e)\n        (println (str \"Unexpected errors: \" (.getMessage e))))))\n#+END_SRC\n\n*** Development\n\n**** Leiningen/Boot\n\n#+BEGIN_SRC clojure\n[etuk \"0.1.0\"]\n#+END_SRC\n\n**** Gradle\n\n#+BEGIN_SRC groovy\ncompile \"etuk:etuk:0.1.0\"\n#+END_SRC\n\n**** Maven\n\n#+BEGIN_SRC xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eetuk\u003c/groupId\u003e\n  \u003cartifactId\u003eetuk\u003c/artifactId\u003e\n  \u003cversion\u003e0.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n#+END_SRC\n\n** Useful Links\n\n- [[http://selenium-python.readthedocs.io/api.html#desired-capabilities][desired-capabilities]]\n- [[http://selenium-python.readthedocs.io/api.html#module-selenium.webdriver.support.expected_conditions][module-selenium.webdriver.support.expected_conditions]]\n\n** Warning:\n\nThis is early stage of development so things will changes as this project evolve.\n\n** License\n\nCopyright © 2017 agilecreativity\n\nDistributed under the Eclipse Public License either version 1.0 or (at\nyour option) any later version.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilecreativity%2Fetuk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagilecreativity%2Fetuk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilecreativity%2Fetuk/lists"}