Selenium WebDriver Job Interview Questions Part – 5

Part 5 21 : How does selenium RC software testing tool drive the browser?  Answer : When browser loaded In Selenium RC, It ‘injected’ javascript functions into the browser and then It Is using javascript to drive the browser for software application under test. 22 : How does the selenium WebDriver drive the browser? Answer : Selenium webdriver software testing tool works … Read more

Selenium WebDriver : Drag And Drop Element By Pixel(X, Y) Offset using javascriptexecutor

We can use Advanced User Interactions API of selenium webdriver software testing tool to drag the targeted element and drop It on destination element for drag and drop selenium using  javascriptexecutor. I have already described usage of dragAndDrop method with example In THIS POST for drag and drop selenium java. Now supposing, You have an element which you wants to drag … Read more

Job Interview Questions For Selenium WebDriver With Answers

Part 4 16 : How to press ENTER key button on text box In selenium webdriver? Answer : To press ENTER key using selenium WebDriver software automation tool, We need to use selenium Enum Keys with Its constant ENTER as bellow. driver.findElement(By.xpath(“//input[@id=’gbqfq’]”)).sendKeys(Keys.ENTER); 17 : How many types of waits available In selenium WebDriver Answer : There are two types of waits available In selenium … Read more

How To Drag And Drop An Element In Selenium WebDriver

When we talk about drag and drop kind of tricky operations, We need to use Advanced User Interactions API of selenium WebDriver. It Is not so simple and at the same time not too much hard. We need to write multiple syntax to perform drag and drop action because you need to take multiple actions … Read more