You are on page 1of 1

What is Selenium?

Selenium is an open source automation tool which acts a testing suit for web based
applications.
Selenium act as an automation tool for all testing.

Testing all functionalities with manually is called as Manual Testing


Selenium is not working alone
it it used to some language to excute our test cases
that languages like Jave,C#,Python,PHP...etc

Component's of Selenium
------------------------
1.Selenium RC
2.Selenium Grid
3.Selenium Webdriver
4.Selenium IDE

Aim= Automations=Web Applications


To use to write the code---> IDE - Integrated Development Environment - Eclipse,
Netbeans, Intellij
To open Browser format:
------------------------
System.SetProperty("webdriver.Chrome.driver","location");
WebDriver driver=New ChromeDriver();
Get method
-----------
driver.get()
close method:
-------------
driver.quit();

Locators in selenium:
---------------------
Locators:
=========

It is used to find the location of the webElement from Dom.

By:-Abstract class
===
id()-------------
name()-----------direct Attributes(id(),name(),clasName())
className()-----------
xpath()
partialLinkText()
cssSelector()
tagName()
linkText()--- It is used to specificaly click the links in browser.
(Text boxes perform link : "http//www.leafground.com/pages/Edit.html")

You might also like