Select jQuery Selectable Items Using Actions Class Of Selenium WebDriver

We have already learnt how to drag and drop drag-able web element on drop-able web element In THIS POST and drag and drop element for specific X Y pixel offset In THIS POST using selenium webdriver’s Advanced User Interactions API (Actions class). Now supposing you wants to select multiple jQuery select-able Items then also you … Read more

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