Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Selenium Testing With Python Programming
Rating: 5.0 out of 5(2 ratings)
21 students

Selenium Testing With Python Programming

Selenium Testing With Python Programming
Created byDr. Geeta Sable
Last updated 7/2022
English

What you'll learn

  • Why To go for Selenium
  • Comparison of Selenium with other tools
  • To learn Automation
  • To learn Python programming required for testing purpose

Course content

5 sections5 lectures49m total length
  • Installation of Python4:40

    STEPS FOR INSTALLATION OF PYTHON

    Step 1 − Select Version of Python to Install

    Python has various versions available with differences between the syntax and working of different versions of the language. We need to choose the version which we want to use or need. There are different versions of Python 2 and Python 3 available.

    Step 2 − Download Python Executable Installer

    On the web browser, in the official site of python (www.python.org), move to the Download for Windows section.

    All the available versions of Python will be listed. Select the version required by you and click on Download. Let suppose, we chose the Python 3.9.1 version.

    On clicking download, various available executable installers shall be visible with different operating system specifications. Choose the installer which suits your system operating system and download the installer. Let suppose, we select the Windows installer(64 bits).

    The download size is less than 30MB.

    Step 3 − Run Executable Installer

    We downloaded the Python 3.9.1 Windows 64 bit installer.

    Run the installer. Make sure to select both the checkboxes at the bottom and then click Install New.

    Step 4 − Verify Python is installed on Windows

    To ensure if Python is succesfully installed on your system. Follow the given steps −

    • Open the command prompt.

    • Type ‘python’ and press enter.

    • The version of the python which you have installed will be displayed if the python is successfully installed on your windows.

    Step 5 − Verify Pip was installed

    Pip is a powerful package management system for Python software packages. Thus, make sure that you have it installed.

    To verify if pip was installed, follow the given steps −

    • Open the command prompt.

    • Enter pip –V to check if pip was installed.

    • The following output appears if pip is installed successfully.

Requirements

  • Selenium Software, Python ,Pycharm

Description


This course coveres installation of selenium, pyhon, pycharm and how automation occurs for any website while searching anything or performing any task on website..

Following topics are covered in this course

1. Introduction of python and selenium

2. Installation of python

3. Installation of pycharm

4. Installation of selenium

5. Get chrome browser

6. Search on chome browser

7. Get driver manager


SELENIUM :

What is Selenium?

Selenium IDE

Selenium Integrated Development Environment (IDE) is the simplest framework in the Selenium suite. It is a browser plugin to record and playback the operations performed on the browser. Selenium IDE plugins are available for Chrome and Firefox browsers. It doesn’t support the programming features. Selenese is the language which is used to write test scripts in Selenium IDE.

Benefits of Selenium IDE

  1. Very use to use and install

  2. Has built-in test results reporting module

  3. No programming experience is required

  4. It is used to create and execute Test cases using Firefox or Chrome browsers

  5. The user can easily record the Test scripts

  6. The user can edit the Test scripts

  7. The user can create Test Suites.

Drawbacks of Selenium IDE

  1. It doesn’t support iteration statements

  2. No support for conditional statements

  3. It doesn’t support error handling

  4. It does not support Database testing

  5. Available only in Firefox and Chrome

  6. It doesn’t generate a detailed Test Reports summary.

Selenium RC

Selenium RC is a testing tool used for web applications testing. It supports programming using RC. Using RC, we can test out applications in multiple browsers and also in multiple operating systems.

Selenium RC has complex architecture hence slow in automation test execution. In Selenium RC, we need to launch a separate application called Selenium RC Server before we can start testing. Selenium RC server acts as a middleman between selenium commands and your browser. Selenium RC has been officially deprecated, you should use WebDriver or IDE to test your web applications.


COMPONENTS OF SELENIUM


  1. Selenium IDE (Integrated Development Environment)

  2. Selenium RC (Remote Control) – deprecated now

  3. Selenium WebDriver

  4. Selenium Grid

Selenium WebDriver

Selenium WebDriver is a web application testing tool introduced by eliminating the drawbacks of IDE and RC. It is simple in architecture and also easy to understand and use.

Who this course is for:

  • Industry people, Academician ,Students