Oreilly - Selenium WebDriver With Python 3.x - Novice To Ninja - 9781789131550
Oreilly - Selenium WebDriver With Python 3.x - Novice To Ninja
by Lets Kode It | Released June 2018 | ISBN: 9781789131550


Join the best course to learn how to implement an automation framework from scratch using real web applicationAbout This VideoStep into the automation industry with the latest technologies in the market. Learn GUI automation using Selenium WebDriver with Python programming language and the other latest framework technologies.Interested in learning how Selenium WebDriver is used in projects? Then this is for you.In DetailThis course includes a wide range of topics from Selenium WebDriver basics and advanced, Python programming concepts, Unittest and Pytest frameworks, automation framework design (Page Objects, Data Driven, Reading CSV Files), logging infrastructure, cross-browser testing, interview preparation. All the materials are provided including the code files. You achieve two targets with one single course - The complete Python programming language and Selenium WebDriver automation. We start from beginners' level and go through to advanced level. This is a single course for everything you need to know related to Web UI automation. Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Introduction
    • Introduction 00:01:27
    • How to reach me anytime and ask questions? 00:03:40
  2. Chapter 2 : Setup and Configuration
    • Python Installation – Windows 00:03:52
    • Configuration of Python – Windows 00:04:20
    • Python Installation and Setup – Mac 00:09:17
    • Must Watch Lecture Before Moving Forward 00:06:56
    • Package Management Using PIP 00:08:05
    • IDE Options for Python Development 00:05:46
    • Installing iPython 00:03:41
  3. Chapter 3 : Understanding Variables and Data Type
    • Python Terminal Walkthrough 00:11:45
    • Understanding Objects and References 00:12:01
    • Variables Rules 00:07:24
    • Numbers Data Type and Math Operations 00:07:26
    • Numbers - Exponentiation And Modulo 00:05:45
    • Arithmetic Order of Precedence 00:06:51
    • Boolean Data Type 00:06:02
    • Working with Strings 00:09:33
    • String Methods - Part 1 00:10:59
    • String Methods - Part 2 00:08:10
    • More String Slicing and Indexing 00:07:41
    • Strings Formatting 00:05:10
  4. Chapter 4 : Advanced Data Types
    • List and Accessing the Elements 00:07:54
    • List Methods 00:10:54
    • Working with Dictionary 00:10:34
    • Nested Dictionary 00:07:03
    • Dictionary Methods 00:06:41
    • Working with Tuple 00:06:28
  5. Chapter 5 : Comparison and Boolean Operators
    • Working with Comparators 00:09:49
    • Understanding Boolean Operators 00:07:10
    • Boolean Operators - Order of Precedence 00:07:41
  6. Chapter 6 : Program Control Flow
    • Conditional Logic - If Else Conditions 00:11:20
    • While Loop Demo 00:07:49
    • Break Continue and While/Else 00:09:42
    • For Loop Demo 00:11:25
    • Iterating Multiple Lists - Using the Zip Function 00:03:49
    • Using Range Function In For Loop 00:08:36
  7. Chapter 7 : Functions/Methods - Working With Reusable Code
    • Understanding Methods 00:10:27
    • Working with Return Values 00:12:30
    • Working With Positional / Optional Parameters 00:07:21
    • Understanding Variable Scope 00:10:16
    • More Built-In Functions 00:09:45
    • Practice Exercise with Solution Homework 00:10:33
  8. Chapter 8 : Classes - Object Oriented Programming
    • Understanding Objects / Classes 00:09:15
    • Create Your Own Object 00:12:37
    • Create Your Own Methods 00:08:59
    • Inheritance 00:08:07
    • Method Overriding 00:08:48
    • Practice Exercise with Solution Homework 00:04:02
  9. Chapter 9 : Exception Handling
    • Exception Handling Demo 00:10:18
    • Finally and Else Block 00:07:39
    • Practice Exercise with Solution Homework 00:03:28
  10. Chapter 10 : Modules
    • Builtin Modules 00:08:54
    • Create Your Own Modules 00:06:42
  11. Chapter 11 : Working with Files
    • How to Write Data to a File 00:08:48
    • How to Read a File 00:06:24
    • File Handling Using "With" And "As" Keywords 00:09:32
  12. Chapter 12 : How to Inspect Elements Different Browsers - Add-Ons
    • Introduction 00:04:04
    • How to Inspect Elements Using Firefox DevTools 00:12:41
    • Firefox Add-On - Try XPath 00:06:58
    • How to Inspect Elements Using Chrome DevTools 00:10:08
    • Chrome Extension - Part 1 00:07:16
    • Chrome Extension - Part 2 00:04:43
    • Tricks to Generate XPath 00:10:10
    • FirePath Fans -> If you want to use FirePath 00:05:57
  13. Chapter 13 : Selenium WebDriver -> Setup and Installation
    • Selenium WebDriver Installation – Mac 00:04:17
    • Selenium WebDriver Installation – Windows 00:03:01
    • How To Install Selenium Plugin To PyCharm 00:02:26
    • Selenium 3.x Update 00:08:06
  14. Chapter 14 : Selenium WebDriver -> Running Tests on Various Browsers
    • Running Tests on Firefox 00:12:16
    • Running Tests on Google Chrome - Mac 00:06:21
    • Running Tests on Google Chrome – Windows 00:05:52
    • Requirements to Run Tests On IE 00:03:44
    • Running Tests on Internet Explorer 00:02:31
    • Running Tests on Safari 00:04:47
    • How to Set Drivers in System Path - Mac 00:08:23
    • How to Set Drivers in System Path - Windows 00:07:01
    • Interview Questions 00:04:30
  15. Chapter 15 : Selenium WebDriver -> Finding Elements
    • Understanding Elements and DOM 00:08:37
    • Find Element by Id and Name 00:10:20
    • Understanding Dynamic Ids and Selenium Exception 00:08:03
    • Find Element by XPath and CSS Selectors 00:07:10
    • Find Element by Link Text 00:06:22
    • Find Element by Class Name and Tag Name 00:15:31
    • Understanding "By" Class 00:07:24
    • How to Find List of Elements 00:11:55
    • Interview Questions 00:06:05
  16. Chapter 16 : CSS Selectors - Advanced Locators
    • Using Ids with CSS Selectors to Find Elements 00:09:55
    • How to Use Multiple CSS Classes to Find Elements 00:11:27
    • Using Wildcards with CSS Selectors 00:11:28
    • How to Find Child Nodes Using CSS Selectors 00:07:10
  17. Chapter 17 : XPath - Advanced Locators
    • Difference between Absolute and Relative XPath 00:12:28
    • How to Build an Effective XPath 00:05:31
    • Using Text to Build an Effective XPath 00:07:45
    • Build XPath Using Contains Keyword 00:06:24
    • Build XPath Using Starts-With Keyword 00:08:02
    • How to Find Parent and Sibling Nodes 00:07:38
    • Practice Exercise with Solution + Interview Question 00:11:40
  18. Chapter 18 : Selenium WebDriver -> Working with Web Elements
    • Browser Interactions Introduction 00:08:22
    • Browser Interaction Practical Implementation 00:10:58
    • How to Click and Type on a Web Element 00:15:54
    • How to Find the State of a Web Element (Disabled and Enabled Elements) 00:10:29
    • Radio Buttons and Checkboxes 00:14:18
    • Working with Elements List 00:10:01
    • Understanding Dropdown Elements 00:05:10
    • Working With A Dropdown Element Practical Example 00:07:30
    • How to Work With Hidden Elements 00:07:44
    • Working With Hidden Elements - Practical Example 00:10:41
    • Interview Questions 00:04:41
  19. Chapter 19 : Selenium WebDriver -> Useful Methods and Properties
    • How to Get the Text on Element 00:04:37
    • How to Get Value of Element Attribute 00:05:04
    • Generic Method to Find Elements 00:14:45
    • How to Check If Element Is Present 00:12:57
    • How to Build Dynamic XPath 00:10:02
    • Interview Questions 00:04:26
  20. Chapter 20 : Selenium WebDriver -> Wait Types
    • Implicit Wait Vs Explicit Wait 00:12:48
    • Implicit Wait Practical Example 00:04:29
    • Explicit Wait Practical Example 00:08:48
    • Generic Method to Work with Explicit Wait 00:11:19
    • Interview Questions 00:04:06
  21. Chapter 21 : Selenium WebDriver -> Advanced
    • Calendar Selection Introduction 00:08:47
    • Calendar Selection Practical Example 00:04:28
    • Calendar Selection Real Time Example 00:08:15
    • AutoComplete Introduction 00:07:59
    • AutoComplete Practical Example 00:04:50
    • How to Take Screenshots 00:09:27
    • Generic Method to Take Screenshots 00:06:41
    • Executing JavaScript Commands 00:07:23
    • How to Find Size of the Window 00:03:20
    • How to Scroll Element into View 00:11:06
    • Interview Questions 00:05:06
  22. Chapter 22 : Selenium WebDriver -> Switch Window and Iframes
    • How to Switch Window Focus 00:09:41
    • Switch to Window Practical Example 00:06:02
    • How to Work With Iframes 00:11:08
    • Switch to Iframe Practical Example 00:07:39
    • Handling JavaScript Popup 00:08:56
  23. Chapter 23 : Selenium WebDriver -> Working with Actions Class
    • Mouse Hover Actions 00:11:07
    • How to Drag and Drop Element on a Web Page 00:07:28
    • Working With Sliders Actions 00:05:50
  24. Chapter 24 : Logging Infrastructure
    • Introduction to Logging Infrastructure 00:10:50
    • Changing the Format of Logs 00:08:40
    • Logger - Console Example 00:09:03
    • Logger - Configuration File Example 00:12:27
    • How to Write a Generic Custom Logger Utility 00:14:09
  25. Chapter 25 : Unittest Infrastructure
    • Unittest Introduction 00:05:36
    • Writing First Test Case 00:11:00
    • How to Implement Class Level SetUp and TearDown Methods 00:05:47
    • How to Assert a Test Method 00:17:03
    • How to Run Code from Terminal 00:08:34
    • How to Create a Test Suite 00:09:41
  26. Chapter 26 : Pytest -> Advanced Testing Framework
    • Pytest Installation and First Script 00:09:10
    • How to Work With PyTest Fixtures 00:04:47
    • Multiple Ways to Run Test Cases 00:08:29
    • Conftest -> Common Fixtures to Multiple Modules 00:11:00
    • How to Maintain Run Order of Tests 00:09:07
    • Running Tests Based On Command Line Arguments 00:11:43
    • Structure Tests in a Test Class 00:11:28
    • How to Return a Value from Fixtures 00:06:59
    • How to Generate HTML Test Report 00:05:21
  27. Chapter 27 : Automation Framework - Part 1
    • Automation Framework Introduction 00:10:26
    • Understanding Framework Structure 00:05:04
    • Test Scenario without Framework 00:10:58
    • Convert Test Case to Page Object Model Framework 00:08:58
    • Refactor Your Page Object Class - Part 1 00:11:27
    • Build Your Custom Selenium Driver Class 00:10:32
    • Refactor Your Page Object Class - Part 2 00:11:31
  28. Chapter 28 : Automation Framework - Part 2
    • Add Logging to Automation Framework 00:11:08
    • How to Verify Test Case Result 00:07:09
    • Complete Login Page Test Cases 00:10:28
    • Create Conftest to Implement Common Setup Methods 00:11:00
    • Refactor Conftest Make Framework More Readable 00:08:11
  29. Chapter 29 : Automation Framework - Part 3
    • How to Assert Without Stopping Test Execution 00:09:06
    • How to Assert Without Stopping Test Execution Practical Example Part – 1 00:10:26
    • How to Assert Without Stopping Test Execution Practical Example Part – 2 00:09:50
    • Implement Screenshots in a Framework 00:10:54
    • Taking Screenshots on Test Failure 00:07:17
    • BasePage and Util Concept Introduction 00:14:42
    • Inheriting BasePage Class 00:04:05
  30. Chapter 30 : Automation Framework -> Practice Exercise
    • CustomDriver -> Additional Methods before Exercise 00:07:08
    • Practice Exercise Question 00:08:06
    • Find Element Locators -> Solution Part 1 00:04:59
    • Create Register Courses Page Class -> Solution Part 2 00:11:46
    • Create Register Courses Test Class -> Solution Part 3 00:11:03
    • Practice Exercise Solution Update - Part 1 00:10:02
    • Practice Exercise Solution Update - Part 2 00:12:15
  31. Chapter 31 : Data Driven Testing
    • Setup and Configuration 00:04:34
    • Data Driven Testing Practical Implementation 00:11:28
    • Utility to Read CSV Data 00:07:57
    • Multiple Data Sets Test Case Practical Example 00:08:01
  32. Chapter 32 : Running Complete Test Suite
    • How to Manage Navigation in Framework 00:09:37
    • Refactor Login Tests 00:08:27
    • How to Run a Test Suite 00:05:21
    • Running Test Suite on Chrome 00:10:55
  33. Chapter 33 : Conclusion
    • BONUS: What's next and other cool free stuff? 00:03:42
  34. Show and hide more

    Oreilly - Selenium WebDriver With Python 3.x - Novice To Ninja

    9781789131550.selenium.webdriver.with.OR.part1.rar

    9781789131550.selenium.webdriver.with.OR.part2.rar

    9781789131550.selenium.webdriver.with.OR.part3.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss