Automation Using Selenium Webdriver

Thursday 11 August 2016

Selenium Faqs

1.What are the annotations used in TestNG ?

Ans:@Test, @BeforeSuite, @AfterSuite, @BeforeTest,
@AfterTest, @BeforeClass, @AfterClass, @BeforeMethod,
 @AfterMethod.

2.How do you read data from excel ?

Ans:
1.FileInputStreamfis = new FileInputStream(“path of excel file”);


2.Workbook wb = WorkbookFactory.create(fis);



3.Sheet s = wb.getSheet(“sheetName”);



4.String value = s.getRow(rowNum).getCell(cellNum).getStringCellValue();

3.What is the use of xpath ?

Ans:it is used to find the WebElement in web page.
It is very useful to identify the dynamic web elements.

4.What are different types of locators ?

Ans:There are 8 types of locators and all are the static methods of
 the By class.By.id(), By.name(), By.tagName(), By.className(),
By.linkText(), By.partialLinkText(), By.xpath, By.cssSelector().

5.What is the difference between Assert and Verify?

Ans: Assert- it is used to verify the result. If the test case fail then
 it will stop the execution of the test case there itself and move
 the control to other test case.
Verify- it is also used to verify the result. If the test case fail then
 it will not stop the execution of that test case.

6.What is the alternate way to click on login button?

Ans:use submit() method but it can be used only when attribute
type=submit.

7.How do you verify if the checkbox/radio is checked or not ?

Ans:We can use isSelected() method.
Syntax –

1.driver.findElement(By.xpath(“xpath of the checkbox/radio button”)).isSelected();
If the return value of this method is true then it is checked else it is not.

8.How do you handle alert pop-up ?

Ans:To handle alert pop-ups, we need to 1st switch control to
 alert pop-ups then click on ok or cancle then move control back to
 main page.
String mainPage = driver.getWindowHandle();
Alert alt = driver.switchTo().alert(); // to move control to alert popup
alt.accept(); // to click on ok.
alt.dismiss(); // to click on cancel.

//Then move the control back to main web page-

driver.switchTo().window(mainPage); → to switch back to main page.

9. How do you launch IE/chrome browser?

Ans: Before launching IE or Chrome browser we need to set the System property.

//To open IE browser


System.setProperty(“webdriver.ie.driver”,”path of the iedriver.exe file ”);



WebDriver driver = new InternetExplorerDriver();


4 //To open Chrome browser →
 System.setProperty(“webdriver.chrome.driver”,”path of the chromeDriver.exe file ”);
5 WebDriver driver = new ChromeDriver();

10.How to perform right click using WebDriver?

Ans:Use Actions class

 1. Actions act = new Actions(driver);
2 .// where driver is WebDriver type

3. act.moveToElement(webElement).perform();

4. act.contextClick().perform();

11.How do perform drag and drop using WebDriver?

Ans:Use Action class

 1. Actions act = new Actions(driver);


2. WebElement source = driver.findElement(By.xpath(“ —–”));

//source ele whichyou want to drag

3.WebElement target = driver.findElement(By.xpath(“ —–”));
//target where you want to drop

4. act.dragAndDrop(source,target).perform();


12.Give the example for method overload in WebDriver.

Ans:Frame(string), frame(int), frame(WebElement).

13.How do you upload a file?

Ans: To upload a file we can use sendKeys() method.

1 driver.findElement(By.xpath(“input field”)).sendKeys(“path of the file which u want to upload”);

14.How do you click on a menu item in a drop down menu?

Ans:If that menu has been created by using select tag then we can use the methods
selectByValue() or selectByIndex() or selectByVisibleText().
These are the methods of the Select class.
If the menu has not been created by using the select tag then we can
 simply find the xpath of that element and click on that to select.

15.How do you simulate browser back and forward ?

Ans:

 1driver.navigate().back();


2 driver.navigate().forward();

16.How do you get the current page URL ?

Ans:
1 driver.getCurrentUrl();

17.What is the difference between ‘/’ and ‘//’ ?

Ans://- it is used to search in the entire structure.
/- it is used to identify the immediate child.

18.What is the difference between findElement and findElements?

Ans:Both methods are abstract method of WebDriver interface and used to
 find the WebElement in a web page.

findElement() – it used to find the one web element. It return only one WebElement type.

findElements()- it used to find more than one web element. It return List of WebElements.

19.How do you achieve synchronization in WebDriver ?

Ans:We can use implicit wait.
Syntax- driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
Here it will wait for 10sec if while execution driver did not find
the element in the page immediately.
This code will attach with each and every line of the script automatically.
It is not required to write every time. Just write it once after opening the browser.

20.Write the code for Reading and Writing to Excel through Selenium ?

Ans:1.FileInputStreamfis = new FileInputStream(“path of excel file”);

2. Workbook wb = WorkbookFactory.create(fis);

3. Sheet s = wb.getSheet(“sheetName”);

4. String value = s.getRow(rowNum).getCell(cellNum).getStringCellValue(); // read data

5. s.getRow(rowNum).getCell(cellNum).setCellValue(“value to be set”); //write data

6.FileOutputStreamfos = new FileOutputStream(“path of file”);

7.wb.write(fos); //save file

21.How to get typed text from a textbox ?

Ans:use getAttribute(“value”) method by passing arg as value.

1 String typedText = driver.findElement(By.xpath(“xpath of box”)).getAttribute(“value”));

22.What are the different exceptions you got when working with WebDriver ?

Ans:ElementNotVisibleException, ElementNotSelectableException, NoAlertPresentException,
 NoSuchAttributeException, NoSuchWindowException, TimeoutException, WebDriverException etc.

23.What are the languages supported by WebDriver ?

Ans:Python, Ruby, C# and Java are all supported directly by the development team.
There are also webdriver implementations for PHP and Perl.

24.How do you clear the contents of a textbox in selenium ?

Ans:Use clear() method.

1.driver.findElement(By.xpath(“xpath of box”)).clear();

25.What is a Framework ?
Ans:A framework is set of automation guidelines which help in
Maintaining consistency of Testing, Improves test structuring, Minimum usage of code, Less Maintenance of code, Improve re-usability, Non Technical testers can be involved in code, Training period of using the tool can be reduced, Involves Data wherever appropriate.
There are five types of framework used in software automation testing:
1-Data Driven Automation Framework
2-Method Driven Automation Framework
3-Modular Automation Framework
4-Keyword Driven Automation Framework
5-Hybrid Automation Framework ,its basically combination of different frameworks. (1+2+3).

26.What are the prerequisites to run selenium webdriver?

Ans:JDK, Eclipse, WebDriver(selenium standalone jar file), browser, application to be tested.

27.What are the advantages of selenium webdriver?

Ans:It supports with most of the browsers like Firefox, IE, Chrome, Safari, Opera etc.

a) It supports with most of the language like Java, Python, Ruby, C# etc.
b) Doesn’t require to start server before executing the test script.
c) It has actual core API which has binding in a range of languages.
d) It supports of moving mouse cursors.
e) It support to test iphone/Android applications.
28.What is WebDriverBackedSelenium ?

Ans:WebDriverBackedSelenium is a kind of class name where we can create an object for it as below:

Selenium wbdriver= new WebDriverBackedSelenium(WebDriver object name, “URL path of website”)
The main use of this is when we want to write code using both WebDriver and Selenium RC , we must use above created object to use selenium commands.

29.How to invoke an application in webdriver ?

Ans:
  driver.get(“url”); or driver.navigate().to(“url”);