{"id":26538549,"url":"https://github.com/indosaram/helenium","last_synced_at":"2026-05-19T02:33:56.222Z","repository":{"id":48165211,"uuid":"396173753","full_name":"Indosaram/helenium","owner":"Indosaram","description":"Helper package for Selenium: download chromedriver automatically, and run handy functions with ease.","archived":false,"fork":false,"pushed_at":"2022-10-31T17:19:09.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-18T13:55:09.008Z","etag":null,"topics":["python","selenium"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Indosaram.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":"2021-08-15T00:50:29.000Z","updated_at":"2022-09-16T10:55:08.000Z","dependencies_parsed_at":"2023-01-20T09:36:21.750Z","dependency_job_id":null,"html_url":"https://github.com/Indosaram/helenium","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Indosaram%2Fhelenium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Indosaram%2Fhelenium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Indosaram%2Fhelenium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Indosaram%2Fhelenium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Indosaram","download_url":"https://codeload.github.com/Indosaram/helenium/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244880659,"owners_count":20525515,"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":["python","selenium"],"created_at":"2025-03-21T23:18:33.894Z","updated_at":"2026-05-19T02:33:56.156Z","avatar_url":"https://github.com/Indosaram.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# helenium\n\n## What is it?\n\nIt is very tedious to download chromedriver whenever your chrome browser get updated, or if you want to setup new environment. This package handles downloading chormedriver automatically. In addition, it also gives you some handy selenium wrapper class.\n\n## Installation\n\nUse pip to install this package. It is not yet released in Pypi, but it is planned to do so when the version reached 1.0.0!\n\n```bash\npip install helenium\n```\n\n## How to use it?\n\nYou can import `SeleniumLoader` class if you just want to use chromedriver feature. And instantiating this will trigger setup chromdriver.\n\n```python\nfrom helenium import SeleniumLoader\n\n\nSeleniumLoader()\n```\n\nIf you want to use wrapper class,\n\n```python\nimport time\n\nfrom helenium.base import SeleniumBase\n\nselenium_base = SeleniumBase()\nselenium_base.setup_driver() # Same as SeleniumLoader())\n\nselenium_base.driver.get('https://google.com')\nselenium_base.click_and_send_key(\n    '/html/body/div[1]/div[3]/form/div[1]/div[1]/div[1]/div/div[2]/input',\n    'Python\\n',\n)\ntime.sleep(1)\n\nassert selenium_base.driver.current_url.startswith(\n    'https://www.google.com/search?q=Python'\n)\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findosaram%2Fhelenium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Findosaram%2Fhelenium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findosaram%2Fhelenium/lists"}