What is Automation Testing?
Overview: In this blog, you can read what is automation and what is the usage of automation testing. And what are the type of selenium tools.
Topics:
What is Automation Testing?
What are the Types of Selenium tools.
Automation Testing Using different platforms.
What is Automation Testing?
Automation Testing is Describes a wide range of technology that can reduce user involvement in the process. User involvement is reduced by predefined criteria, Processes, and Test cases.
Automation is defined in simple terms, Automation Is defines as The techniques of making A process or system work automatically without any human involvement.
Automation Testing Tools:
There are many types of tools available for testing in the current market.
Selenium: Selenium is an open-source automation framework for testing web-based applications. Selenium supports many programming languages "Java, c#, PHP, javascript, python, e.t.c " for testing web-based applications.
Types of Selenium tools:
- Selenium ide (Integrated Development Environment)
- Selenium Rc (Remote control)
- Webdriver
- Selenium Grid
- Include selenium web-driver in python.
- from selenium import webdriver
- The above line will include selenium webdriver in the python file.
- Create webdriver object and assign browser driver.
- Install Selenium browser.
- Chrome driver: https://chromedriver.chromium.org/
- After Chrome driver download install this driver in the bin folder
- Now include the chrome driver in python file web= webdriver.Chrome()
- launch this file in the terminal and it will open a chrome browser.
- Now launch any website using selenium with python.
- web.get("https://harshit873.github.io/"). it will open the google.com site in the chrome browser.
- Source code:
- from selenium import webdriver
- web= webdriver.Chrome()
- web.get("https://harshit873.github.io/)
Comments
Post a Comment