{"id":20750040,"url":"https://github.com/fatimazza/robotseleniumtest","last_synced_at":"2026-05-17T15:44:04.164Z","repository":{"id":164265741,"uuid":"626248835","full_name":"Fatimazza/RobotSeleniumTest","owner":"Fatimazza","description":"Web Automation Testing using Robot Framework with Selenium Library \u0026 Python","archived":false,"fork":false,"pushed_at":"2023-05-12T03:22:51.000Z","size":263,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T14:19:22.462Z","etag":null,"topics":["python","robot-framework","selenium-library","selenium-pom","web-automation-testing"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/Fatimazza.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":"2023-04-11T05:03:24.000Z","updated_at":"2023-05-29T12:12:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"6d9b3a1b-3064-40a3-9264-096502a7a742","html_url":"https://github.com/Fatimazza/RobotSeleniumTest","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Fatimazza/RobotSeleniumTest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotSeleniumTest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotSeleniumTest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotSeleniumTest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotSeleniumTest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Fatimazza","download_url":"https://codeload.github.com/Fatimazza/RobotSeleniumTest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fatimazza%2FRobotSeleniumTest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276318537,"owners_count":25621650,"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","status":"online","status_checked_at":"2025-09-21T02:00:07.055Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","robot-framework","selenium-library","selenium-pom","web-automation-testing"],"created_at":"2024-11-17T08:25:35.385Z","updated_at":"2025-09-21T22:34:26.979Z","avatar_url":"https://github.com/Fatimazza.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eRobot Selenium Test\u003c/h1\u003e\u003c/br\u003e\n\n\u003cp align=\"center\"\u003e\n:sparkles: Web Automation Testing using Robot Framework with Selenium Library \u0026amp; Python :sparkles:\n\u003c/p\u003e\n\n## Preparation\n\nWhat will be used on this project\n\n\n| Item           | Source                                                         |\n| -------------- | ------------------------------------------------------------ |\n| Editor         | VS Code (https://code.visualstudio.com/download) |\n| Package Manager| PIP (https://pip.pypa.io/en/stable/getting-started/) |\n| UI Test Tools  | Robot Framework with Python (https://robotframework.org/#getting-started) |\n|                | Selenium Library (https://github.com/robotframework/SeleniumLibrary/) |\n|                | PyYaml (https://pypi.org/project/PyYAML/) |\n| Design Pattern | Selenium POM or Page Object Model |\n| Test Reporter  | Robot Framework with Python (https://robotframework.org/#getting-started)|\n| Browser        | Latest version of Chrome / Firefox / Edge / Safari  |\n\n## Pre-Requisite Installation\n\nInstall VS Code Editor, Python, and PIP\n\nTo check whether you already installed Python \u0026 PIP\n\n```Bash\npython --version\n```\n```Bash\npython -m pip --version \n```\n\n## Testing Tools Installation\n\nInstall Robot Framework\n\n```Bash\npython -m pip install robotframework\n```\n\nInstall Selenium Library\n\n```Bash\npython -m pip install --upgrade robotframework-seleniumlibrary\n```\n\nInstall PyYAML \n\n```Bash\npython -m pip install pyyaml\n```\n\n## Setting up Project\n\n### Clone\n\n**👉 [Clone this Repository](https://github.com/Fatimazza/RobotSeleniumTest/)** through Terminal or Command Prompt\n\n### Open the Project on Editor\n\nOpen this Automation Project using VS Code Editor.\n\n### Run the Automation Project \n\nChange to Project directory on Terminal or Command Prompt\n\n```Bash\ncd RobotSeleniumTest\n```\n\nRun Specific Test Execution on Terminal\n\n```Bash\nrobot --outputdir output/ step/test_login.robot\n```\n\nRun All Test Execution on Terminal\n\n```Bash\nrobot --outputdir output/ .\n```\n\n\u003e Note: Please wait until all test execution finished\n\n\u003e Default Browser used is Chrome\n\nRun All Test on Various Browser\n\n```Bash\nrobot --variable browser:chrome --outputdir output/chrome .\n```\n\n```Bash\nrobot --variable browser:firefox --outputdir output/firefox .\n```\n\n```Bash\nrobot --variable browser:safari --outputdir output/safari .\n```\n\n### Test Execution HTML Report\n\n:white_check_mark: Report available on \u003cb\u003e RobotSeleniumTest/output/report.html \u003c/b\u003e OR \u003cbr/\u003e\u003cbr/\u003e\n:white_check_mark: Report available on \u003cb\u003e RobotSeleniumTest/output/browser/report.html \u003c/b\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatimazza%2Frobotseleniumtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffatimazza%2Frobotseleniumtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffatimazza%2Frobotseleniumtest/lists"}