Interview Questions For Selenium WebDriver Part 10

Part 10 46 : Can we perform drag and drop operation In Selenium WebDriver? Tell me a syntax to drag X element and drop It On Y element. Answer : Yes, We can perform drag and drop operation using selenium webdriver software testing tool’s Advanced User Interactions API. Syntax Is like below. new Actions(driver).dragAndDrop(X, Y).build().perform(); View Practical Example 47 : … Read more

Set Priority For Selenium WebDriver TestNG @Test Method Execution

We can set test execution priority for selenium WebDriver @Test annotation methods. If there Is single @Test annotation method In your test class then you do not need to set test execution priority but supposing you have multiple @Test annotation methods In single test class then many of you may face Issue like @Test method’s execution sequence Is … Read more

Selenium WebDriver Job Interview Questions Part – 9

Part 9 41 : What kind of software testings are possible using selenium WebDriver? We can use It for any other purpose except testing activity? Answer : Generally we are using selenium WebDriver for functional and regression testing of software web applications. 42 : Give me any five different xPath syntax to locate bellow given Input element. … Read more

How To Select Date In Selenium WebDriver From Calendar – JQuery Date Picker

You will find JQuery date picker In many software web applications. Selecting date from JQuery date picker Is not hard task but yes you need to use some logical steps to select expected date from date picker In selenium WebDriver software testing tool. You can not do It only using single statement. Earlier we have learnt … Read more