{"id":15434819,"url":"https://github.com/tomoki171923/selenium-ci","last_synced_at":"2026-04-27T23:38:23.542Z","repository":{"id":120461945,"uuid":"298127397","full_name":"tomoki171923/selenium-ci","owner":"tomoki171923","description":"Automation testing for web applications using Selenium.","archived":false,"fork":false,"pushed_at":"2021-05-17T22:55:41.000Z","size":3734,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-18T09:13:31.157Z","etag":null,"topics":["python","selenium","unittest"],"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/tomoki171923.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-24T00:28:16.000Z","updated_at":"2021-10-05T17:32:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"d4fe3483-9a7f-475c-bbb2-7f7d0087dd11","html_url":"https://github.com/tomoki171923/selenium-ci","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tomoki171923/selenium-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomoki171923%2Fselenium-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomoki171923%2Fselenium-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomoki171923%2Fselenium-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomoki171923%2Fselenium-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomoki171923","download_url":"https://codeload.github.com/tomoki171923/selenium-ci/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomoki171923%2Fselenium-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["python","selenium","unittest"],"created_at":"2024-10-01T18:41:14.632Z","updated_at":"2026-04-27T23:38:23.527Z","avatar_url":"https://github.com/tomoki171923.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# selenium-ci\n\n## Application Architecture\n\n```\nroot\n └ log  //log and screenshot files are located in this folder.\n └ mockdata  //mockdata files to test are located in this folder.\n └ src\n    └ common  //common function code are located in this folder.\n    └ scenario  //unittest code are located in this folder.\n └ case1_xxxx.py  //your test code\n └ case2_yyyy.py  //your test code\n └ case3_zzzz.py  //your test code\n```\n\n## Dependent Packages\n\n```\nbrew cask install chromedriver\nconda install selenium\nconda install pillow\nconda install termcolor\nconda install pyyaml\n```\n\n## How to use\n\n### 1. prepare test data\n\nyou need to prepare your test data in the mockdata folder.\n(reference. mockdata/case1_sample.yml)\n\n### 2. code unittest\n\nyou need to prepare your unit test code in the root folder.\nyou can use functions of src/common/selenium.py\n(reference. case1_sample.py)\n\n### 3. execute Selinium Test\n\nexecute the following commond.\n```\npython3 ./case1_sample.py -v\n```\n\n### 4. check your log\n\ncheck your test log in the log folder.\n\nthe following is sample.\nlog/seleniumci_20200925_054618_case1_sample/case1_sample.log\n```\n******************* SELENIUM TEST START : 20200925_054618 *******************\n\ntest_case01 (__main__.case1_sample) ... ok\ntest_case02 (__main__.case1_sample) ... ok\ntest_case03 (__main__.case1_sample) ... ok\ntest_case04 (__main__.case1_sample) ... ok\ntest_case05 (__main__.case1_sample) ... ok\ntest_case06 (__main__.case1_sample) ... ok\ntest_case07 (__main__.case1_sample) ... ok\ntest_case08 (__main__.case1_sample) ... ok\ntest_case09 (__main__.case1_sample) ... ok\ntest_case10 (__main__.case1_sample) ... ok\ntest_case11 (__main__.case1_sample) ... ok\ntest_case12 (__main__.case1_sample) ... ok\ntest_case13 (__main__.case1_sample) ... ok\ntest_case14 (__main__.case1_sample) ... ok\ntest_case15 (__main__.case1_sample) ... ok\ntest_case16 (__main__.case1_sample) ... ok\ntest_case17 (__main__.case1_sample) ... ok\ntest_case18 (__main__.case1_sample) ... ok\ntest_case19 (__main__.case1_sample) ... ok\ntest_case20 (__main__.case1_sample) ... ok\ntest_case21 (__main__.case1_sample) ... ok\ntest_case22 (__main__.case1_sample) ... ok\ntest_case23 (__main__.case1_sample) ... ok\ntest_case24 (__main__.case1_sample) ... ok\ntest_case25 (__main__.case1_sample) ... ok\ntest_case26 (__main__.case1_sample) ... ok\ntest_case27 (__main__.case1_sample) ... ok\ntest_case28 (__main__.case1_sample) ... ok\ntest_case29 (__main__.case1_sample) ... ok\ntest_case30 (__main__.case1_sample) ... ok\ntest_case31 (__main__.case1_sample) ... ok\n\n----------------------------------------------------------------------\nRan 31 tests in 471.687s\n\nOK\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomoki171923%2Fselenium-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomoki171923%2Fselenium-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomoki171923%2Fselenium-ci/lists"}