Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/supriya1011/moviesapptest
Selenium Project Repository
https://github.com/supriya1011/moviesapptest
apitesting automation cucumber selenium-java testing testng-framework
Last synced: 26 days ago
JSON representation
Selenium Project Repository
- Host: GitHub
- URL: https://github.com/supriya1011/moviesapptest
- Owner: supriya1011
- Created: 2024-07-21T06:42:00.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-07-21T07:48:56.000Z (4 months ago)
- Last Synced: 2024-10-11T03:01:37.906Z (26 days ago)
- Topics: apitesting, automation, cucumber, selenium-java, testing, testng-framework
- Language: HTML
- Homepage: https://qamoviesapp.ccbp.tech
- Size: 85.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Selenium Project Repository
## Overview
This repository contains a Selenium-based project designed for automated web testing. The project aims to provide robust, reusable, and maintainable test scripts for various web applications. Selenium, being a powerful tool for web browser automation, allows us to simulate user interactions and validate the functionality of web applications.## Features
- Automated browser testing with Selenium WebDriver
- Support for multiple browsers (Chrome, Firefox, Edge, etc.)
- Comprehensive test cases covering various scenarios
- Integration with test frameworks (e.g., TestNG, cucumber, Pom)
- Easy configuration and setup
- Detailed reporting and logging## Project Structure
│
├── src/
│ ├── main/
│ │ └── java/
│ │ └── com/
│ │ └── project/
│ │ ├── pages/
│ │ ├── tests/
│ │ └── utils/
│ └── test/
│ └── java/
│ └── com/
│ └── project/
│ ├── tests/
│ └── utils/
│
├── resources/
│ ├── config/
│ └── testdata/
│
├── drivers/
│ ├── chromedriver.exe
│ └── geckodriver.exe
│
├── reports/
│
├── logs/
│
├── .gitignore
├── pom.xml (if using Maven)
├── build.gradle (if using Gradle)
└── README.md