Udemy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Development
Web Development Data Science Mobile Development Programming Languages Game Development Database Design & Development Software Testing Software Engineering Development Tools No-Code Development
Business
Entrepreneurship Communications Management Sales Business Strategy Operations Project Management Business Law Business Analytics & Intelligence Human Resources Industry E-Commerce Media Real Estate Other Business
Finance & Accounting
Accounting & Bookkeeping Compliance Cryptocurrency & Blockchain Economics Finance Finance Cert & Exam Prep Financial Modeling & Analysis Investing & Trading Money Management Tools Taxes Other Finance & Accounting
IT & Software
IT Certification Network & Security Hardware Operating Systems Other IT & Software
Office Productivity
Microsoft Apple Google SAP Oracle Other Office Productivity
Personal Development
Personal Transformation Personal Productivity Leadership Career Development Parenting & Relationships Happiness Esoteric Practices Religion & Spirituality Personal Brand Building Creativity Influence Self Esteem & Confidence Stress Management Memory & Study Skills Motivation Other Personal Development
Design
Web Design Graphic Design & Illustration Design Tools User Experience Design Game Design Design Thinking 3D & Animation Fashion Design Architectural Design Interior Design Other Design
Marketing
Digital Marketing Search Engine Optimization Social Media Marketing Branding Marketing Fundamentals Marketing Analytics & Automation Public Relations Advertising Video & Mobile Marketing Content Marketing Growth Hacking Affiliate Marketing Product Marketing Other Marketing
Lifestyle
Arts & Crafts Beauty & Makeup Esoteric Practices Food & Beverage Gaming Home Improvement Pet Care & Training Travel Other Lifestyle
Photography & Video
Digital Photography Photography Portrait Photography Photography Tools Commercial Photography Video Design Other Photography & Video
Health & Fitness
Fitness General Health Sports Nutrition Yoga Mental Health Dieting Self Defense Safety & First Aid Dance Meditation Other Health & Fitness
Music
Instruments Music Production Music Fundamentals Vocal Music Techniques Music Software Other Music
Teaching & Academics
Engineering Humanities Math Science Online Education Social Science Language Teacher Training Test Prep Other Teaching & Academics
AWS Certification Microsoft Certification AWS Certified Solutions Architect - Associate AWS Certified Cloud Practitioner CompTIA A+ Cisco CCNA Amazon AWS CompTIA Security+ AWS Certified Developer - Associate
Graphic Design Photoshop Adobe Illustrator Drawing Digital Painting InDesign Character Design Canva Figure Drawing
Life Coach Training Neuro-Linguistic Programming Personal Development Mindfulness Meditation Personal Transformation Life Purpose Emotional Intelligence Neuroscience
Web Development JavaScript React CSS Angular PHP WordPress Node.Js Python
Google Flutter Android Development iOS Development Swift React Native Dart Programming Language Mobile Development Kotlin SwiftUI
Digital Marketing Google Ads (Adwords) Social Media Marketing Google Ads (AdWords) Certification Marketing Strategy Internet Marketing YouTube Marketing Email Marketing Google Analytics
SQL Microsoft Power BI Tableau Business Analysis Business Intelligence MySQL Data Modeling Data Analysis Big Data
Business Fundamentals Entrepreneurship Fundamentals Business Strategy Online Business Business Plan Startup Freelancing Blogging Home Business
Unity Game Development Fundamentals Unreal Engine C# 3D Game Development C++ 2D Game Development Unreal Engine Blueprints Blender
30-Day Money-Back Guarantee
Development Software Testing Automation Testing

Python SDET-Backend/ Rest API Testing with BDD Framework

Build Python Utilities from Scratch to automate Rest API’s with SQL Integration,Batch Jobs Automation,Web Scrapping etc
Rating: 4.6 out of 54.6 (434 ratings)
3,646 students
Created by Rahul Shetty
Last updated 2/2021
English
English [Auto]
30-Day Money-Back Guarantee

What you'll learn

  • Get Complete knowledge on Back end automation with Python which is must to become Python SDET
  • Understanding the API Automation from Scratch with Python Requests Library
  • Knowledge on implementing Database readers to communicate with DB from Python code
  • Establishing Connection with Linux Servers through Python Paramiko Library
  • Implement BDD Automation Framework for Python API Testcases from Scratch
  • Execute Batch Jobs in AWS Linux Servers and download the files to local using Python
  • Integrate the Database resutls to API and build dynamic Json Payloads
  • Knowledge on Web Scrapping to extract content from Web pages for Data science work
Curated for the Udemy for Business collection

Course content

15 sections • 78 lectures • 11h 19m total length

  • Preview10:07
  • Preview17:03
  • Important note for MAC Users
    04:05
  • Important Note before watching next section
    00:24

  • Python hello world Program with Basics
    08:33
  • Datatypes in python and how to get the Type at run time
    06:37
  • List Datatype and its operations to manipulate
    16:07
  • Tuple and Dictionary Data types in Python with examples
    10:37
  • How to Create Dictionaries at run time and add data into it
    03:49
  • If else condition in python with working examples
    09:54
  • How loops work in Python and importance of code idendation
    11:18
  • Programming examples using for loop - 1
    05:09
  • Programming examples using While loop - 2
    13:12
  • What are functions? How to use them in Python
    13:08
  • OOPS Principles : Classes and objects in Python
    09:10
  • What is Constructor and its role in Object oriented programming
    17:03
  • Inheritance concepts with examples in Python
    15:01
  • Strings and its functions in python
    12:20
  • How to read text file content using Python
    08:26
  • Importance of readLine and readLines Methods in python
    09:35
  • Writing Data into File using Python
    10:28
  • Code Download
    00:02
  • Quiz - Test your Python Basic Knowledge!
    17 questions

  • Where to download the code files?
    00:04
  • Preview10:04
  • Parse content in Json file into Dictionary - Example
    13:23
  • Parsing complex Json with nested Structure and extract values
    10:09
  • Compare two Json Schemas using Python Dictionaries with example
    05:05
  • Section 3 Quiz - Test your knowledge!
    4 questions

  • Install Python requests Library for API Automation
    08:47
  • Understanding Get http request calls and get response using Json method
    14:54
  • Validating response status codes and headers using response object
    11:02
  • Understand automating Post http request with Payload and headers
    14:24
  • End to end automation flow of API calls using Python
    11:02

  • Setting global configurations using Python Config object
    11:43
  • Optimizing resources and payload from externally as reusable data
    06:50
  • Authenticating API's using Python Automation auth method- Example
    11:05
  • Section 3- 5 Code Download
    00:02
  • Section 4 and 5 Quiz - Test Your API Automation Knowledge!
    6 questions

  • Importance of Session Managing in API Testing
    08:29
  • Send and Manage cookies for API request calls
    11:39
  • Time out and Redirection attributes in making request calls
    07:04
  • Sending Attachments through Post request call using Files Dictionary object
    09:56
  • Code Snippet download
    00:07

  • Setting up MYSQL Instance to drive the data from Python Code
    04:50
  • Setup Database with the Example Table Data and start Connection
    09:17
  • SQL Queries download
    00:21
  • Executing Queries on to Database from Python Code
    08:30
  • Iterate over database table results set from Python and parse the results
    12:29
  • Create Connection utility and pass the SQL connection externally into test
    11:54
  • Section 7 Quiz
    5 questions

  • Integrate Database results into API Test Data to build functional flow
    14:20
  • Code Download
    00:01

  • What are the BDD tools we use to Automate in Python Language
    07:04
  • Install Behave and download Python Professional edition
    10:03
  • Create Step Definition file with auto generated syntaxes and annotations
    06:30
  • Implement API Automation actual logic into step Definitions
    12:18
  • Implement Hooks for the scenarios by defining environment.py file
    08:41
  • Implement Parameterization to the Test Scenarios using Example outline Keywords
    11:45
  • Use Tagging mechanism to run selected tests in framework
    03:34
  • Best practices to write reusable step definitions code for API test Scenarios
    14:41
  • Integrate Tagging and hooks to build generalize BDD code for Python API Tests
    08:37
  • Generate Allure reports for Python API BDD Framework
    10:59
  • Complete Code Download
    00:02

  • Parsing and reading the CSV files using Python csv package
    12:10
  • Building a logic to get the data from CSV based on conditional query
    03:28
  • Parsing and writing back to CSV files using Python csv package
    05:47
  • Where to download code files?
    00:04
  • Section 9 Quiz
    6 questions

Requirements

  • None- Everything including Python basics are taught from Scratch in the course

Description

***You will be mastered in Python Back End Automation even if you have never programmed before in Python***
This Python SDET course starts from scratch teaching Python Basics and then drive you through many important utilities of Python like API Testing, BDD API Automation Framework, Database Validations,  CSV Readers, Json Parsers, Batch Jobs execution from Linux Servers, SSH connection to upload and download files, Web scrapping for data science work etc
As Python SDET, One should aware of many modules of python to perform end to end backend/Server side automation and this course comes us one single package which explains all the modules from scratch.

By end of this course, You can confidently implement any Python Automation Jobs or clear any interview related to Python testing.

Below is the high level content this course covers :

Json Parsers with Python modules
Read and Write to Json files with Python
API Automation using requests Library
Understand Crud operations GET,POST, DELETE,PUT API operations automation
Parsing API responses with Python utilities
Database interactions  with Python SQL Connector
BDD Automation Framework development from Scratch
Read the multiple result sets of database tables from Python
Integrating Database readers with API calls to build payload
CSV Parser with Python modules
Read and Write to CSV files with Python
Interacting with AWS Linux Servers
Establishing SSH connection to Linux using Python Paramiko
Sending the commands and executing the jobs in Server through Python
Uploading and downloading the files of batch Jobs from Servers with paramiko
IMportance of Web scrapping in Data science projects
Techniques to apply web scrapping to extract content from web pages


Wish you all the Best with your new Python SDET Journey :)









Who this course is for:

  • Manual testers, Non-programming aware testers interested in learning Automation
  • Freshers/Graduates who want to kick start their Career in IT World

Featured review

Mark Ivan Berbenzana
Mark Ivan Berbenzana
5 courses
5 reviews
Rating: 5.0 out of 55 months ago
Rahul is a great teacher! I understand everything from basics to advance applications. Although I do admit that if you're really a beginner, as in a beginner from 0, you'll have a hard time, but take it one step at a time and enjoy the journey as you learn.

Instructor

Rahul Shetty
Teacher/Founder of RahulShettyAcademy.com (Testing School)
Rahul Shetty
  • 4.5 Instructor Rating
  • 133,071 Reviews
  • 329,808 Students
  • 19 Courses

Nothing is Impossible . It all depends on how we are Trained on it!

Teaching is my Passion. And its my Profession. The only Business I know is Spreading the Knowledge

"Every QA Professional have a wish of learning trending Automation courses but somehow 90% of them are giving up their thoughts “

Its not due to the lack of courses available in the Market,   but its about finding the right Mentor who can guide,teach and understand student's pulse with their background education"

So to full fill all these Gaps, I have established "RahulShettyAcademy"  few years ago, And after successful completion of more than 300 offline Training batches.. I am finally 
 here at Udemy to share all my 13 Years IT Experience Knowledge to QA Colleagues and Students

And you know?? Already 2,00,000 Happy Students are taking advantage with my courses here at Udemy with overwhelmed responses

Below are the course I teach here in this platform and many more on the way!

For Web Automation Testing :
1.Selenium Tutorial - In Java and Python
2. Protractor Tutorial - Java Script Automation for Angular
3.Selenium- Frameworks
4. Cucumber Framework Tutorial

For Mobile Automation Testing
3. Appium Mobile Testing Tutorial

For API Automation Testing :
4. SoapUI API Automation
5. Rest API Automation

For Performance Testing:
6. Jmeter Tutorial

For complete QA Process:
Software Testing comprehensive Tutorial

For Security and Data Base Testing :
Web Security Testing tutorial
SQL-Data Base Testing Tutorial

For Core Java-
Complete Java for Automation Tutorial

*********************************************************************************************************
Please note that All  RAHUL SHETTY  courses offer life time query support and we have dedicated discussion board where you can post your questions.. I will answer all of them in less than 24 hours...
*********************************************************************************************************

All The Best :) Looking forward to meet you all in my courses

- Rahul Shetty Academy
(Teacher)





  • Udemy for Business
  • Teach on Udemy
  • Get the app
  • About us
  • Contact us
  • Careers
  • Blog
  • Help and Support
  • Affiliate
  • Impressum Kontakt
  • Terms
  • Privacy policy
  • Cookie settings
  • Sitemap
  • Featured courses
Udemy
© 2021 Udemy, Inc.