{"id":19874279,"url":"https://github.com/avdhutssh/advanced-selenium-webdriver","last_synced_at":"2025-07-19T07:07:10.734Z","repository":{"id":250448770,"uuid":"834505622","full_name":"avdhutssh/Advanced-Selenium-Webdriver","owner":"avdhutssh","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-12T08:11:48.000Z","size":6428,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T01:26:33.547Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/avdhutssh.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":"2024-07-27T13:24:06.000Z","updated_at":"2024-08-12T08:11:52.000Z","dependencies_parsed_at":"2024-08-12T09:45:04.356Z","dependency_job_id":null,"html_url":"https://github.com/avdhutssh/Advanced-Selenium-Webdriver","commit_stats":null,"previous_names":["avdhutssh/advanced-selenium-webdriver"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/avdhutssh/Advanced-Selenium-Webdriver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdhutssh%2FAdvanced-Selenium-Webdriver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdhutssh%2FAdvanced-Selenium-Webdriver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdhutssh%2FAdvanced-Selenium-Webdriver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdhutssh%2FAdvanced-Selenium-Webdriver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avdhutssh","download_url":"https://codeload.github.com/avdhutssh/Advanced-Selenium-Webdriver/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdhutssh%2FAdvanced-Selenium-Webdriver/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265899938,"owners_count":23845879,"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","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":[],"created_at":"2024-11-12T16:22:36.918Z","updated_at":"2025-07-19T07:07:10.679Z","avatar_url":"https://github.com/avdhutssh.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\n    #/**\n    # * @author Avdhut Shirgaonkar\n    # * Email: avdhut.ssh@gmail.com\n    # * LinkedIn: https://www.linkedin.com/in/avdhut-shirgaonkar-811243136/\n    # */\n    #/***************************************************/\n--\u003e\n\n---\n\n# 💻 Advanced Selenium WebDriver Framework\n\n## 📑 Table of Contents\n\n- [Introduction](#introduction)\n- [Features](#features)\n- [Project Structure](#project-structure)\n- [Getting Started](#getting-started)\n- [Running Tests](#running-tests)\n- [Test Reports](#test-reports)\n- [Contributions](#contributions)\n- [Contacts](#contacts)\n\n## 📖 Introduction\n\nThis repository contains an advanced Selenium WebDriver framework built using TestNG.\n\n## 🚀 Features\n\n- **Selenium Base Test**: A base test class that sets up the Selenium WebDriver environment.\n- **Page Object Model (POM)**: All web pages are represented as classes with methods that interact with the elements on the page.\n- **TestUtilities**: Utility classes to handle common tasks like taking screenshots, reading data from files, and interacting with browser cookies.\n- **Browser Driver Factory**: Factory pattern implementation for initializing WebDriver instances for different browsers.\n- **Parallel Test Execution**: TestNG is configured to run tests in parallel, improving execution time.\n- **Data-Driven Testing**: Supports testing with data from CSV files, Excel spreadsheets, and TestNG DataProviders.\n- **Logging with Log4j**: Detailed logging of test execution for easier debugging and analysis.\n- **Headless Browser Testing**: Supports running tests in headless mode for faster execution in CI/CD environments.\n- **Test Reports**: TestNG and custom listeners generate detailed test reports.\n\n## 📁 Project Structure\n\n```plaintext\nsrc/\n├── main/\n│   ├── java/\n│   │   ├── base/                # Base classes for the framework\n│   │   ├── pages/               # Page Object classes\n│   │   ├── utils/               # Utility classes for various tasks\n│   └── resources/               # Configuration files (e.g., log4j.properties)\n└── test/\n    ├── java/\n    │   ├── tests/               # Test classes\n    └── resources/\n        ├── testng.xml           # TestNG suite configuration file\n        └── data/                # Data files for data-driven testing\n```\n\n## ▶️ Getting Started\n\n### Prerequisites\n\n- Java JDK 8 or higher\n- Maven\n- WebDriver binaries and dependencies in pom.xml\n- IDE (e.g., IntelliJ IDEA, Eclipse)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/avdhutssh/Advanced-Selenium-Webdriver.git\n   cd Advanced-Selenium-Webdriver\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   mvn clean install\n   ```\n\n\n## 🚀 Running Tests\n\nYou can run the tests using the following Maven command:\n\n```bash\nmvn test\n```\n\nAlternatively, you can run specific test suites using TestNG XML files:\n\n```bash\nmvn test -DsuiteXmlFile=src/test/resources/testng.xml\n```\n\n## 📊 Test Reports\n\nTestNG generates a default report in the `target/surefire-reports` directory. You can configure custom reports by integrating tools like Allure or Extent Reports.\n\n## 💡 Contributions\n\nContributions are welcome! Please fork the repository and submit a pull request to propose changes.\n\n\n## 📧 Contacts\n\n- [![Email](https://img.shields.io/badge/Email-avdhut.ssh@gmail.com-green)](mailto:avdhut.ssh@gmail.com)\n- [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profile-blue)](https://www.linkedin.com/in/avdhut-shirgaonkar-811243136/)\n\nFeel free to reach out if you have any questions or suggestions.\n\nHappy Learning!!!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdhutssh%2Fadvanced-selenium-webdriver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favdhutssh%2Fadvanced-selenium-webdriver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdhutssh%2Fadvanced-selenium-webdriver/lists"}