https://github.com/geozi/selenium-javascript-jest-navbar
The project showcases the use of Selenium with JavaScript and Jest for performing functional tests on a navbar
https://github.com/geozi/selenium-javascript-jest-navbar
functional-testing jest selenium-javascript
Last synced: 4 months ago
JSON representation
The project showcases the use of Selenium with JavaScript and Jest for performing functional tests on a navbar
- Host: GitHub
- URL: https://github.com/geozi/selenium-javascript-jest-navbar
- Owner: geozi
- Created: 2024-10-05T16:30:39.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-02T12:08:17.000Z (6 months ago)
- Last Synced: 2025-01-03T21:41:29.417Z (6 months ago)
- Topics: functional-testing, jest, selenium-javascript
- Language: JavaScript
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# selenium-javascript-jest-navbar

## About the project
The project showcases the use of Selenium with JavaScript and its combination with the Jest testing framework for performing User Interface (UI) tests on a navbar.
## Website[^1]
The website where the element is located is the https://www.allianz.com/en.html .
## Web element under test
The web element tested was the navbar found on the landing page of the website:
![]()
## Tests performed
There were 2 suites of tests created, each covering a distinct user-initiated keyboard operation:
- Hovering over each navbar link.
- Clicking each navbar link.## Dependencies
```json
"dependencies": {
"selenium-webdriver": "^4.25.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
```[^1]: Disclaimer: This website was tested in order to showcase the use of Selenium with Javascript and Jest, and such testing does not constitute an endorsement or promotion of said website.