Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dalenguyen/selenium-javascript
Automation UI Testing with Selenium and JavaScript
https://github.com/dalenguyen/selenium-javascript
automated-testing javascript selenium selenium-webdriver
Last synced: 4 months ago
JSON representation
Automation UI Testing with Selenium and JavaScript
- Host: GitHub
- URL: https://github.com/dalenguyen/selenium-javascript
- Owner: dalenguyen
- Created: 2018-10-16T00:36:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T12:51:40.000Z (about 2 years ago)
- Last Synced: 2024-10-09T05:41:32.524Z (4 months ago)
- Topics: automated-testing, javascript, selenium, selenium-webdriver
- Language: JavaScript
- Size: 43.9 KB
- Stars: 39
- Watchers: 6
- Forks: 20
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Automation Testing with Selenium and JavaScript
This is an unofficial guide to UI Automation Testing by using Selenium and JavaScript.
## Getting Started
You need to install either [Yarn](https://yarnpkg.com/en/) or [Node](https://nodejs.org/en/) on your machine. In this project, I will use Yarn for installing packages and running scripts.
```sh
yarn install
```## Running UI Test
```sh
yarn run test
```## Documentation
+ [Installation](docs/installation.md)
+ [Getting Started](docs/getting-started.md)
+ [Navigating](docs/navigating.md)
+ [Page Objects](docs/pageObjects.md)## Contributions
This is an ongoing project. Please feel free to ask questions, request features, create pull request, or [tickets](https://github.com/dalenguyen/selenium-javascript/issues/new).
## References
[Selenium-Python](https://selenium-python.readthedocs.io)
[Formy](http://formy-project.herokuapp.com/)
[Team Tree House](https://teamtreehouse.com/library/drag-and-drop)
[Selenium Essential Training](https://www.lynda.com/Selenium-tutorials/Selenium-Essential-Training/696863-2.html)