Upon completion of this class, the student will be able to automate software testing with Python, Selenium WebDriver, and API, Postman, focusing on web applications. Topics include language components, working with a professional IDE, objet oriented design, unit tests, performance testing and RESTful service. The course is supplemented with many hands-on labs, solutions, and code examples.
- Planning for Automation
- Skills/Tools/Workflows
- Basic Syntax
- Types of Variables and their declaration
- Control condition flow
- Object Oriented Design
- Selenium WebDriver
- Pytest Framework
- Robot Framework
- DataBase Introduction
- Python CRUD Operation
- Introduction to API
- Restful Service
- RESTful Web service with Flask Microframework
- API Testing with Pytest
- Performance Testing vs Load Testing vs Stress Testing
- Jmeter Testing
- Agile Methodology
- Continues Build Environments
- Static Analysis
- Jenkins/Gitlab CI
- Dockerized app testing
https://www.python.org/downloads/release/python-362
If you are in ECV, you could use the following address
http://192.168.88.187:8080/pycharm.exe
http://192.168.88.187:8080/pycharm.dmg
To install Homebrew, open Terminal or your favorite OSX terminal emulator and run
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
The script will explain what changes it will make and prompt you before the installation begins. Once you’ve installed Homebrew, insert the Homebrew directory at the top of your PATH environment variable. You can do this by adding the following line at the bottom of your ~/.profile file
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
Now, we can install Python 3:
$ brew install python3