{"id":22824330,"url":"https://github.com/sango-tech/ui-automation-testing","last_synced_at":"2026-04-27T21:31:18.963Z","repository":{"id":129983611,"uuid":"356131131","full_name":"sango-tech/ui-automation-testing","owner":"sango-tech","description":"Automation UI testing for your webapp.","archived":false,"fork":false,"pushed_at":"2021-04-09T12:12:22.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-31T00:18:30.689Z","etag":null,"topics":["automation-framework","automation-test","selenium","selenium-python","selenium-webdriver","ui-automated-tests"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sango-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-04-09T04:09:49.000Z","updated_at":"2021-04-09T14:43:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"f04ccef8-9f76-4f4d-8362-9471431d79aa","html_url":"https://github.com/sango-tech/ui-automation-testing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sango-tech/ui-automation-testing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sango-tech%2Fui-automation-testing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sango-tech%2Fui-automation-testing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sango-tech%2Fui-automation-testing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sango-tech%2Fui-automation-testing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sango-tech","download_url":"https://codeload.github.com/sango-tech/ui-automation-testing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sango-tech%2Fui-automation-testing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356596,"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":["automation-framework","automation-test","selenium","selenium-python","selenium-webdriver","ui-automated-tests"],"created_at":"2024-12-12T17:06:15.702Z","updated_at":"2026-04-27T21:31:18.947Z","avatar_url":"https://github.com/sango-tech.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Sango UI Automation Testing tool\n\nAutomation UI test is combined from Selenium + Python Unit test. This help you can set your testing scenario.\nThis tool is writing by Python and Docker compose.\n\n### Structor\n\n```\nYOUR-PROJECT-DIR\n├── automation-ui-testcases\n│   └── test_page_not_found.py\n│   └── test_something_else.py\n\n```\n\n### Run your app\n\nRun your webapp first, then check your local IP if you are on local. Or directly testing on a live webapp (e.i https://my-live-website.com).\n\n\nIn case locally\n\n```bash\n# Get your local IP to make sure selenium can read your website from inside docker container\n$ ifconfig\n\n# .env file\nTARGET_PROJECT_URL=https://192.168.1.181:8081\n\n```\n\n### Get started\n\n```bash\n$ cp .env.example .env\n```\n\n### Add your test\n\n- `$ mkdir automation-ui-testcases` on `YOUR-PROJECT-DIR`\n- `ln -s YOUR-PROJECT-DIR/automation-ui-testcases ./testcases`\n- Create your test case on following this structor `automation-ui-testcases/test_*.py`\n\n\n### Sample test code\n\n```\nfrom base import BaseTestCase\nfrom selenium.common.exceptions import NoSuchElementException\n\n\nclass TestPageNotFound(BaseTestCase):\n    def test_valid_element(self):\n        self.set_device(self.DEVICE_DESKTOP)\n        driver = self.set_driver()\n\n        # This auto generate to https://192.168.1.181:8081/not-found\n        target_url = self.get_url(\"not-found\")\n        driver.get(target_url)\n        # driver.implicitly_wait(3)\n\n        try:\n            logo_src = driver.find_element_by_css_selector(\".app-logo\").get_attribute(\"src\")\n            self.assertIn(\"logo\", logo_src)\n\n            h1_text = driver.find_element_by_css_selector(\"h1\").text\n            self.assertEqual(h1_text, \"404\")\n        except NoSuchElementException as e:\n            self.fail(e)\n\n```\n### Run test\n\n```bash\n$ make test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsango-tech%2Fui-automation-testing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsango-tech%2Fui-automation-testing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsango-tech%2Fui-automation-testing/lists"}