{"id":16988471,"url":"https://github.com/mayvenn/limo","last_synced_at":"2025-07-13T19:35:05.371Z","repository":{"id":57713818,"uuid":"49751758","full_name":"Mayvenn/limo","owner":"Mayvenn","description":"A wrapper around selenium webdriver","archived":false,"fork":false,"pushed_at":"2020-01-30T00:25:06.000Z","size":207,"stargazers_count":25,"open_issues_count":1,"forks_count":4,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-18T13:15:34.832Z","etag":null,"topics":["clojure","selenium-webdriver","wrapper"],"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/Mayvenn.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2016-01-16T00:08:19.000Z","updated_at":"2021-11-25T03:40:31.000Z","dependencies_parsed_at":"2022-08-25T10:30:54.010Z","dependency_job_id":null,"html_url":"https://github.com/Mayvenn/limo","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayvenn%2Flimo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayvenn%2Flimo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayvenn%2Flimo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayvenn%2Flimo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mayvenn","download_url":"https://codeload.github.com/Mayvenn/limo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244978459,"owners_count":20541858,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["clojure","selenium-webdriver","wrapper"],"created_at":"2024-10-14T03:04:05.513Z","updated_at":"2025-03-22T15:30:52.514Z","avatar_url":"https://github.com/Mayvenn.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Limo ![Actions](https://github.com/mayvenn/limo/workflows/Clojure%20CI/badge.svg)\n\n\n\n\n[API Docs](http://mayvenn.github.io/limo)\n\nA Clojure library that's a small wrapper around selenium webdriver.\n\nWhy a new wrapper? This library aims to provide a high-level capybara-styled api.\n\nLimo embraces its tight coupling to Selenium Webdriver. That means no wrapper types. When you need to drop down the native selenium API, you are free to do so.\n\n## Installation\n\nAdd your `project.clj` file:\n\n[![Clojars Project](https://img.shields.io/clojars/v/limo.svg)](https://clojars.org/limo)\n\n## Basic Usage - functional test\n\nCurrently similar to [clj-webdriver](https://github.com/semperos/clj-webdriver). Unlike clj-webdriver, all actions will poll and ignore stale element exceptions for 15 seconds (by default).\n\n```clojure\n(ns app.test\n  (:require [limo.api :as api]\n            [limo.driver :as driver]\n            [clojure.test :refer :all]))\n\n(deftest test-login\n  ;; sets the implicit driver to use.\n  ;; Alternatively you can pass the driver in as the first argument\n  (api/set-driver! (driver/create-chrome))\n  ;; tells selenium webdriver to implicitly wait 1s, for up the *default-timeout* (explicit wait) of 15 seconds\n  ;; see http://www.seleniumhq.org/docs/04_webdriver_advanced.jsp for more details\n  (api/implicit-wait 1000)\n  (api/to \"http://example.com\")\n  (api/fill-form {\"#email\" email\n                  \"#password\" password})\n  (api/click \"#login\")\n  (is (contains-text? \"#flash-message\" \"Welcome! You have signed up successfully.\"))\n```\n\n## Alternate Usage - automate login, data scraping, etc\n\nYou can also create a new project that use Limo to automate manual tasks using\n[limo-driver](https://github.com/agilecreativity/limo-driver).\n\ne.g.\n\n```sh\nlein new limo-driver \u003cyour-project-name\u003e\n```\nThis will create the basic CLI project that you can use as starting point to quickly.\n\nPlease see [limo-driver's README.md](https://github.com/agilecreativity/limo-driver/blob/master/README.md) for more details.\n\n## License\n\nCopyright © 2020 Mayvenn\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%2Fmayvenn%2Flimo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayvenn%2Flimo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayvenn%2Flimo/lists"}