{"id":18338975,"url":"https://github.com/darylducks17/testproject","last_synced_at":"2026-05-04T01:34:38.711Z","repository":{"id":61228316,"uuid":"544993495","full_name":"darylducks17/TestProject","owner":"darylducks17","description":"Learning Web Automation using Robot Framework (Selenium with Python) using SDET- QA Automation Techie tutorials.","archived":false,"fork":false,"pushed_at":"2022-10-24T10:33:23.000Z","size":1820,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T14:36:45.568Z","etag":null,"topics":["python","robotframework","seleniumlibrary","test-automation"],"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/darylducks17.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}},"created_at":"2022-10-03T15:42:54.000Z","updated_at":"2023-02-27T14:57:30.000Z","dependencies_parsed_at":"2023-01-20T10:01:20.535Z","dependency_job_id":null,"html_url":"https://github.com/darylducks17/TestProject","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/darylducks17/TestProject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darylducks17%2FTestProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darylducks17%2FTestProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darylducks17%2FTestProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darylducks17%2FTestProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darylducks17","download_url":"https://codeload.github.com/darylducks17/TestProject/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darylducks17%2FTestProject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32591601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: 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","robotframework","seleniumlibrary","test-automation"],"created_at":"2024-11-05T20:16:05.588Z","updated_at":"2026-05-04T01:34:38.697Z","avatar_url":"https://github.com/darylducks17.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TestProject\n\nLearning Web Automation using Robot Framework (Selenium with Python) as part of my placement.\n\n## Topics I Have Covered\n\n- Handling input boxes\n- Selecting \u0026 unselecting radio buttons\n- Checking \u0026 unchecking check boxes\n- Selecting options from drop down \u0026 list menus\n- Waits \u0026 timeouts\n- Closing single and multiple browsers\n- Handling alerts (JavaScript)\n- Capturing element \u0026 full page screenshots\n- Performing mouse operations\n- Scrolling page using JavaScript executor\n- Handle tabbed \u0026 browser windows\n- User defined keywords \u0026 resource files\n- Scrolling page using JavaScript executor\n- Working with For Loops\n- Extracting link texts\n- Handling web/HTML tables\n- Data driven tests using scripts, Excel and CSV\n- Grouping tests using tags\n- POM design pattern\n- Executing tests parallelly\n- Headless browser testing\n\n## Pre-requisites\n\n### Installing Robot Framework\n\n- Install the latest version of Python: \u003chttps://www.python.org/\u003e\n  - Ensure you tick the `Add to PATH` checkbox when downloading Python\n- Install the latest version Robot Framework using ``` pip install robotframework ``` in CMD.\n  - This does not upgrade automatically, so update using ``` pip install --upgrade robotframework ```\n- Verify both Python and Robot Framework installation by doing ``` robot --version ``` and ``` python --version ``` in CMD.\n\n### Installing Selenium Library and Drivers\n\n- To run web automation testing in Robot Framework you need to install we testing library called Selenium Library which uses the Selenium tool internally. \n    - Install Selenium Library using ``` pip install robotframework-seleniumlibrary ```\n- After installing the library you will also need to install the browser and OS specific browser drivers for the browsers you want to test. \n    - For TestProject I used Edge, so downloaded the Edge driver from the website. \n    - https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/\n    - Make sure to add the driver to the Python Scripts folder to run the web automation tests. \n\n### Other Pre-requisites  \n\n- You will need to install other packages to efficiently run all the tests in TestProject.\n  - Robot Framework Data Driver ``` pip install robotframework-datadriver ```\n        - To run data driven tests\n    - Robot Framework Pabot ``` pip install robotframework-pabot ```\n      - To run tests parallelly\n\n## How to run tests sequentially\n\n- Executes all the tests\n``` robot -d Results TestCases\\ ```\n``` robot -d Results TestCases\\*.robot ```\n\n- Executes tests which contain the first three letters\n``` robot -d Results TestCases\\Reg*.robot ```\n\n- Executes tests which contain the tags specified\n``` robot -d Results -i Smoke TestCases\\*.robot ```\n\n## How to run tests parallelly\n\n- Executes tests parallelly\n``` Pre-req: install robotframework-pabot in CMD ```\n``` pabot --processes 2 TestCase\\*.robot ```\n\n- Executes test parallelly but saves the results in the Results folder\n``` pabot --processes 2 --outputdir Results TestCase\\*.robot ```\n\n- Executes tests parallelly but without opening the project on your IDE/text editor\n  - Create a batch file - run.bat\n    - In run.bat specify the path\n ``` C:\\Users\\admin\\xxxxxx\\xxxxxx\\TestProject pabot --processes 2 --outputdir Results TestCases\\*.robot ```\n    - Run the CMD script by double clicking the icon in directory\n    - Add `@echo off` in batch file to only show the results of the tests\n\n## Note to Self\n\n- Ensure to change to the correct path in run.bat\n\n## Sources\n\n- \u003chttps://www.youtube.com/playlist?list=PLUDwpEzHYYLsCHiiihnwl3L0xPspL7BPG\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarylducks17%2Ftestproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarylducks17%2Ftestproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarylducks17%2Ftestproject/lists"}