https://github.com/aladnansami/demoney_postman_api_testing
Test Demoney website api . Here Postman collection : https://www.getpostman.com/collections/c201b6d467421000d6da
https://github.com/aladnansami/demoney_postman_api_testing
apitesting jmeter load-testing postman selenium
Last synced: 5 months ago
JSON representation
Test Demoney website api . Here Postman collection : https://www.getpostman.com/collections/c201b6d467421000d6da
- Host: GitHub
- URL: https://github.com/aladnansami/demoney_postman_api_testing
- Owner: aladnansami
- Created: 2022-06-24T11:04:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T06:20:09.000Z (over 3 years ago)
- Last Synced: 2025-01-26T14:11:32.862Z (about 1 year ago)
- Topics: apitesting, jmeter, load-testing, postman, selenium
- Language: JavaScript
- Homepage:
- Size: 180 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demoney_Postman_API_Testing
Postman collection : https://www.getpostman.com/collections/c201b6d467421000d6da
## IDE
postman

## How to run this project in postman ?
Just Import Collection link of your postman
## How to run this project in your device?
01 Clone this project
02 Open with any code editor
03 Give the following command , for help go to https://roadtosdet.com/step-by-step-testing-with-postman-part-2
04 only run collection json file you should following the command below
05 npm install/ npm i or yarn install
06 npx newman run .collection/collection.json
07 npm test
## Reports
01 .Newman 01
02 .Newman 02

03 .Terminal view

04 .Postman interface

## Git Command
## For the very first time after installing github
git init
git remote add origin
git config user.name //to set the username
git config user.email //to set the email
git config user.name //to retrieve the username
git config user.email //to retrieve the email
git status
git add .
git commit -m 'upload'
git branch -M main
git push origin main
## When uploading a new project
git init
git remote add origin
git status
git add .
git commit -m 'upload'
git branch -M main
git push origin main
## When update something in an existing project
git status
git add .
git commit -m 'update'
git push origin main