1.Create a config package
2.Create a python file “config.py” under config package
3.Move url and API auth key to config.py file
4.Import config.py to test file
5.Validate Test result using assert
6.Generate pytest html report
https://pypi.org/project/pytest-html-...
pip install pytest-html-reporter
pytest tests/ --html-report=./report --title='PYTEST REPORT'
End To End Software Testing(Manual):
• Video
End To End Software Testing(Automation):
• Tutorial#1 - Automation Walkthrough | pyt...