https://github.com/entando/entando-qe
Repository for Entando Selenium test
https://github.com/entando/entando-qe
Last synced: 11 months ago
JSON representation
Repository for Entando Selenium test
- Host: GitHub
- URL: https://github.com/entando/entando-qe
- Owner: entando
- License: lgpl-3.0
- Created: 2018-02-09T10:43:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T06:11:09.000Z (over 3 years ago)
- Last Synced: 2024-04-14T07:54:27.302Z (about 2 years ago)
- Language: Java
- Homepage: https://dev.entando.org
- Size: 8.3 MB
- Stars: 4
- Watchers: 21
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# entando-postman/selenium
### Postman version
Postman v.6.0.10 +
Collections v 2.1
### install newman package ###
__Prerequisites__
* Node and npm installed on your machine
* newman and postman-combine-collections installed as global in your environment
### install newman package
`npm install newman --global`
### install postman-combine-collections
`npm install postman-combine-collections --global`
We can choose to execute single collection tests from the `postman_API` directory
or execute all tests simultaneously by grouping all collections in a new
generated json document.
__execute single collection's tests__
```bash
newman run postman_API/Access-Token.postman.collection.json -e postman_API/environment/Entando5.postman_environment.json
```
__execute all collections's tests__
Group all collections by executing:
```bash
postman-combine-collections --filePath=postman_API/*.json
then execute
newman run root.collection.json -e postman_API/environment/Entando5API.postman_environment.json
```