{"id":30512762,"url":"https://github.com/vedadohran/qa_practice_robot_framework","last_synced_at":"2025-10-09T19:15:34.595Z","repository":{"id":311465578,"uuid":"1041971759","full_name":"VedadOhran/qa_practice_robot_framework","owner":"VedadOhran","description":"Automated tests for QA Practice site using Robot Framework","archived":false,"fork":false,"pushed_at":"2025-08-24T16:05:57.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-24T20:53:23.593Z","etag":null,"topics":["datadriventesting","robotframework","seleniumlibrary"],"latest_commit_sha":null,"homepage":"https://qa-practice.netlify.app/","language":"RobotFramework","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/VedadOhran.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,"zenodo":null}},"created_at":"2025-08-21T09:36:52.000Z","updated_at":"2025-08-24T16:06:00.000Z","dependencies_parsed_at":"2025-08-24T20:53:27.641Z","dependency_job_id":"4fa8b8ee-3b08-45e9-a3f1-b3a48ec473a7","html_url":"https://github.com/VedadOhran/qa_practice_robot_framework","commit_stats":null,"previous_names":["vedadohran/qa_practice_robot_framework"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/VedadOhran/qa_practice_robot_framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VedadOhran%2Fqa_practice_robot_framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VedadOhran%2Fqa_practice_robot_framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VedadOhran%2Fqa_practice_robot_framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VedadOhran%2Fqa_practice_robot_framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VedadOhran","download_url":"https://codeload.github.com/VedadOhran/qa_practice_robot_framework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VedadOhran%2Fqa_practice_robot_framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001983,"owners_count":26083243,"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-10-09T02:00:07.460Z","response_time":59,"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":["datadriventesting","robotframework","seleniumlibrary"],"created_at":"2025-08-26T05:08:38.545Z","updated_at":"2025-10-09T19:15:34.591Z","avatar_url":"https://github.com/VedadOhran.png","language":"RobotFramework","funding_links":[],"categories":[],"sub_categories":[],"readme":"QA Automation - Practice Site\n\nThis repository contains automated tests for the QA Practice site: https://qa-practice.netlify.app/\n\nProject Structure\n\nThe project is organized according to the features and functionalities available in the site's navbar, making it easier to maintain and scale the tests.\n\nTests/ – contains Robot Framework test suites grouped by functionality available on the website.\n\nKeywordDefinitionFiles/ – reusable keywords and helper functions.\n\nLocators/ – element locators for different pages.\n\nTestData/ – test data used in the suites.\n\nPrerequisites\n\nInstall dependencies:\n\npip install robotframework\npip install robotframework-seleniumlibrary\npip install robotframework-jsonlibrary\npip install robotframework-requests\n\nTo execute the full UI test suite, run the following command from the project root:\n\nrobot -d results Tests/UI/Forms/login.robot Tests/UI/Ecommerce/products.robot Tests/UI/Ecommerce/cart.robot Tests/UI/Ecommerce/checkout.robot\n\nAPI Testing\n\nYou can run the project application on your laptop/PC by having Docker and execute the following CLI command\ndocker run -d --rm --name qa-practice-api -p8887:8081 rvancea/qa-practice-api:latest\n\nAfter successfully running the above command, you can open the application in browser by accessing the following URL\nhttp://localhost:8887/swagger-ui.html\n\nThe above REST API application includes an OpenAPI (Swagger) Documentation with the following endpoints \nEmployee Management\n\nGET /api/v1/employees\nReturns all employees.\n\nPOST /api/v1/employees\nCreate a new employee.\n\nGET /api/v1/employees/{id}\nReturn employee by ID.\n\nPUT /api/v1/employees/{id}\nUpdate employee by ID.\n\nDELETE /api/v1/employees/{id}\nDelete employee by ID.\n\nSimulation Endpoints\n\nGET /api/v1/simulate/get/employees\nSimulate getting all employees. Requires Authorization header (Bearer token).\n\nGET /api/v1/simulate/server/error\nSimulate an internal server error.\n\nPOST /api/v1/simulate/token\nSimulate an endpoint that returns a JWT token. Use admin for both username and password.\n\nTo execute the full API test suite, run the following command from the project root:\nrobot -d results Tests/API/employee_api.robot","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvedadohran%2Fqa_practice_robot_framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvedadohran%2Fqa_practice_robot_framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvedadohran%2Fqa_practice_robot_framework/lists"}