{"id":20176559,"url":"https://github.com/sokraglav13/automationtestingplayground","last_synced_at":"2025-10-08T06:38:34.052Z","repository":{"id":193693552,"uuid":"689022339","full_name":"sokraglav13/AutomationTestingPlayground","owner":"sokraglav13","description":"This is an Automation Testing Project in Javascript that performs testing in Web Applications with usage of Selenium , Mocha \u0026 Chai.","archived":false,"fork":false,"pushed_at":"2024-10-22T09:28:48.000Z","size":17876,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T04:11:12.130Z","etag":null,"topics":["automation-testing","end-to-end-testing","javascript","mocha-chai","selenium","selenium-javascript","selenium-webdriver","testing","ui-testing","web-testing"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sokraglav13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-09-08T15:59:04.000Z","updated_at":"2024-10-16T10:14:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"da939d6d-fd2a-4c22-834d-944670d02b75","html_url":"https://github.com/sokraglav13/AutomationTestingPlayground","commit_stats":{"total_commits":51,"total_committers":2,"mean_commits":25.5,"dds":"0.23529411764705888","last_synced_commit":"fd644a2b47db6d531be56aaee0b80097bb4cc2c9"},"previous_names":["godpower13/automationtestingplayground","sokraglav13/automationtestingplayground"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sokraglav13/AutomationTestingPlayground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sokraglav13%2FAutomationTestingPlayground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sokraglav13%2FAutomationTestingPlayground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sokraglav13%2FAutomationTestingPlayground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sokraglav13%2FAutomationTestingPlayground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sokraglav13","download_url":"https://codeload.github.com/sokraglav13/AutomationTestingPlayground/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sokraglav13%2FAutomationTestingPlayground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272186604,"owners_count":24888416,"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-08-26T02:00:07.904Z","response_time":60,"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":["automation-testing","end-to-end-testing","javascript","mocha-chai","selenium","selenium-javascript","selenium-webdriver","testing","ui-testing","web-testing"],"created_at":"2024-11-14T02:10:01.196Z","updated_at":"2025-10-08T06:38:29.031Z","avatar_url":"https://github.com/sokraglav13.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AutomationTestingPlayground\n\nThe **Automated Testing** for Web Applications is a comprehensive quality assurance project aimed at enhancing the reliability and stability of web-based software systems. Leveraging the power of Selenium, Mocha \u0026 Chai, this project is designed to automate the testing process, ensuring consistent and efficient evaluation of web applications.\n\n# Design Pattern\nThe Page Object Model (POM) is a widely adopted design pattern in automated software testing, specifically for web applications. It provides a **structured** and **organized** approach to test automation by separating the test code from the elements and actions on web pages. The primary goal of the Page Object Model is to enhance test **maintainability**, **reusability**, and **readability**, thereby improving the overall **efficiency** of automated testing efforts.\n  \n# Capabilities\n- Run test in Selenium Grid\n- Run test local to your computer\n- Run test in 3 browsers (Chrome, Edge, Firefox)\n- Run test in parallel execution\n- Export reports from test execution\n\n# Required Actions \u0026 Settings\n1) Download and install the required browsers ([Google Chrome](https://googlechromelabs.github.io/chrome-for-testing/), [Firefox](https://www.mozilla.org/en-US/firefox/new/), [Microsoft Edge](https://www.microsoft.com/en-us/edge/download?form=MA13FJ) )\n2) Downolad the require browser drivers ([Google Chrome](https://googlechromelabs.github.io/chrome-for-testing/), [Firefox](https://github.com/mozilla/geckodriver/releases), [Microsoft Edge](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) )\n3) To run tests successfully local must add in config.js file your path to driver and browser executables for all browsers Chrome, Firefox, Edge.\n- `DRIVER_EXECUTABLE` : Path to driver executable.\n- `EXECUTABLE` : Path to browser executable.\n```javascript\n pathToChrome: {\n        EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\",\n        DRIVER_EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\"\n    },\n    pathToFirefox: {\n        EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\",\n        DRIVER_EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\"\n    },\n    pathToEdge: {\n        EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\",\n        DRIVER_EXECUTABLE: \"-\u003e FILL THE PATH \u003c-\"\n    },\n```\n\n# Configurations\n\nIn `config.js` file you can modify the configuration of the project :\n- `timeoutTest` : Change the timeout of test in milliseconds \n- `commandsTimeout` : Change the timeout of command execution \n- `browser` : Specify the browsers for test (`chrome`,  `MicrosoftEdge`,  `firefox`)\n-  `environment` : Specify the environment for test to run :\n   - `local` : Tests will run locally to your computer.\n   - `grid` : Tests will run in Selenium Grid.\n   - `cicd` : Tests will run to your CI CD (must set this settings when you are ready to push in github)\n\n# Run Tests\n\nIn `package.json` they have specify execution scripts :\n- `test-serial` : Run tests in serial mode.\n- `test-parallel` : Run tests in parallel mode.\n- `test-mochawesome` : Run tests in serial mode and save a report file to `TestResults/NormalExecution`.\n- `test-parallel-mochawesome` : Run tests in parallel mode and save a report file to `TestResults/ParallelExecution`.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsokraglav13%2Fautomationtestingplayground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsokraglav13%2Fautomationtestingplayground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsokraglav13%2Fautomationtestingplayground/lists"}