{"id":24266825,"url":"https://github.com/brunofbarbosa/robot-framework-playwright","last_synced_at":"2026-04-23T03:31:38.414Z","repository":{"id":203750819,"uuid":"710281853","full_name":"BrunoFBarbosa/robot-framework-playwright","owner":"BrunoFBarbosa","description":"Web automation framework using Robot + Playwright","archived":false,"fork":false,"pushed_at":"2023-10-27T12:42:20.000Z","size":203,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T01:42:10.652Z","etag":null,"topics":["playwright","robotframework"],"latest_commit_sha":null,"homepage":"","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/BrunoFBarbosa.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-10-26T11:39:46.000Z","updated_at":"2024-12-29T13:34:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"48ab1666-3144-4b06-980e-e3f9bade0d4c","html_url":"https://github.com/BrunoFBarbosa/robot-framework-playwright","commit_stats":null,"previous_names":["brunofbarbosa/robot-framework-playwright"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BrunoFBarbosa/robot-framework-playwright","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoFBarbosa%2Frobot-framework-playwright","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoFBarbosa%2Frobot-framework-playwright/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoFBarbosa%2Frobot-framework-playwright/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoFBarbosa%2Frobot-framework-playwright/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BrunoFBarbosa","download_url":"https://codeload.github.com/BrunoFBarbosa/robot-framework-playwright/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoFBarbosa%2Frobot-framework-playwright/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32164871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T02:19:40.750Z","status":"ssl_error","status_checked_at":"2026-04-23T02:17:55.737Z","response_time":53,"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":["playwright","robotframework"],"created_at":"2025-01-15T11:28:00.535Z","updated_at":"2026-04-23T03:31:38.397Z","avatar_url":"https://github.com/BrunoFBarbosa.png","language":"RobotFramework","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About The Project\n\n[![e2e-tests](https://github.com/BrunoFBarbosa/robot-framework-playwright/actions/workflows/webtesting-workflow.yml/badge.svg)](https://github.com/BrunoFBarbosa/robot-framework-playwright/actions/workflows/webtesting-workflow.yml)\n\nA web automation framework to learn about the integration of Robot Framework 🤖 , Playwright 🎭 and Github Actions ✔ in order to consolidate the knowledge from the course [Robot Framework With Playwright And Github Actions](https://www.udemy.com/course/robot-framework-com-playwright-e-github-actions/). The application under test is https://front.serverest.dev/\n\n# Main Topics Covered In This Project\n\n- Web elements interactions using the Browser (Playwright) Library\n- Playwright Trace viewer and Record Video features\n- HTTP requests\n- Context Storages\n- Multiple browsers support using Github Actions\n\n## Getting Started\n\n### Prerequisites\n- Python 3.10.6\n- PIP 22.2.1\n- Node v19.1.0\n\n### Installation\n1. Clone the repo\n```\ngit clone https://github.com/BrunoFBarbosa/robot-framework-playwright.git\n```\n2. Navigate to the project's folder and install the dependencies\n```\ncd robot-framework-playwright/\npip install -U -r requirements.txt\nsudo npm install @playwright/test\nsudo npx playwright install-deps\nrfbrowser init\n```\n\n### Running The Tests Locally\nIn order to run the tests you can use the `robot` command\n\nExamples:\n\n1. Running all the tests in the `tests` folder with a headless Chromium browser and storing the results in the `results` folder:\n```\nrobot -d ./results -v HEADLESS:true -v BROWSER:chromium tests\n```\n\n2. Running a specific test with the `login` tag against a firefox browser:\n```\nrobot -d ./results -v HEADLESS:true -v BROWSER:firefox -i login tests\n```\n\n### Github Actions\n\nThis project contains 3 workflows used for a simple CI service, they can be found at [workflows](https://github.com/BrunoFBarbosa/robot-framework-playwright/tree/main/.github/workflows)\n\n#### 1. **webtesting-workflow.yml**\n\nThe main workflow used whenever there is a push action to the repo.\nIt uses a matrix strategy to run all tests against the 3 major web browsers (Chromium, Firefox and Webkit). The `fail-fast` property is set to `false` in order to the test to continue even if it fails on a specific browser, i.e \nif a test fails on the chromium browser, the tests running on the firefox and webkit will continue to run.\n```\nstrategy:\n      matrix:\n        browser: [chromium, firefox, webkit]\n      fail-fast: false\n```\n\n#### 2. **webtesting-manual-workflow.yml**\n\nA workflow that can be triggered manually in order to run any specific test tag against the browsers, using the same matrix strategy from the previous workflow. You can go [here](https://github.com/BrunoFBarbosa/robot-framework-playwright/actions/workflows/webtesting-manual-workflow.yml), click on Run Workflow and choose a desired tag to run.\n```\non:\n  workflow_dispatch:\n    inputs:\n      tag:\n        type: string\n        description: Qual é a TAG do teste a ser executada?\n        required: true\n```\n\n#### 3. **webtesting-manual-browser-workflow.yml**\n\nA workflow that can be triggered manually similar to the previous workflow. The difference here is that it does not uses a matrix strategy. You can choose which browser you want to run the test against. You can go [here](https://github.com/BrunoFBarbosa/robot-framework-playwright/actions/workflows/webtesting-manual-browser-workflow.yml), click on `Run Workflow` and choose a desired tag and browser to run.\n```\non:\n  workflow_dispatch:\n    inputs:\n      tag:\n        type: string\n        description: Qual é a TAG do teste a ser executada?\n        required: true\n      browser:\n        type: choice\n        options:\n        - chromium\n        - firefox\n        - webkit\n        description: Qual é o navegador onde serão executados os testes?\n        required: true\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunofbarbosa%2Frobot-framework-playwright","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunofbarbosa%2Frobot-framework-playwright","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunofbarbosa%2Frobot-framework-playwright/lists"}