An open API service indexing awesome lists of open source software.

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

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