Reading Font Properties In Selenium WebDriver Using .getCssValue() Method
Sometimes you need to read font properties like font size, font color, font family, font background color etc.. during WebDriver test case […]
Sometimes you need to read font properties like font size, font color, font family, font background color etc.. during WebDriver test case […]
Part 18 83 : What are the benefits of parallelism over normal execution? Answer : Using parallelism facility of TestNG In selenium webdriver, Your software test […]
expectedExceptions Is very good feature of testng using which we can Ignore known but not required exceptions. In your selenium webdriver test […]
Part 17 78 : What Is the syntax to get value from text box and store It In variable. Answer : Most […]
Grouping tests Is another very good feature of testng using which you can create group of test methods. You can create a […]
Part 16 73 : How to set priority of @Test method? What Is Its usage? Answer : In your software web application’s test case, […]
Sometimes you will have a case where few of the @Test methods are taking very very long time to complete the execution or […]
TestNG has very good feature to enable or disable selenium webdriver @Test method. During test execution, If you do not wants to execute […]
Part 15 68 : What Is the usage of testng.xml file? Answer : In selenium WebDriver software testing tool, We are using testng.xml […]
preserve-order Is very Important attribute In TestNG. In Selenium WebDriver test execution, Many times peoples are complaining like my test cases execution not […]
Part 14 63 : What Is TestNG? Answer : TestNG Is Open Source(Freeware) framework which Is Inspired from NUnit and JUnit with […]
We have learnt how to create and store multiple @DataProvider methods In single class file called dataProvider_Repository.java and then we can use those […]
Part 13 58 : Tell me main features of JUnit. Answer : JUnit features are as bellow. JUnit Is unit software testing framework. So It […]
We have already learnt how to create and use testng data providers In selenium webdriver test cases In THIS POST. Also we […]
Part 12 53 : Which Is the latest version of JUnit. Answer : Current latest version of JUnit Is 4.12-beta-2. This can change In future. […]
Sometimes you need to execute multiple test cases at same time to save test execution time. TestNG has very good feature to […]
Part 11 48 : Can you tell me a syntax to close current webdriver Instance and to close all opened webdriver Instances? Answer : Yes, […]
Earlier in previous post, We have learnt how to set test execution priority of WebDriver test cases If you have multiple tests […]
Part 10 46 : Can we perform drag and drop operation In Selenium WebDriver? Tell me a syntax to drag X element and […]
We can set test execution priority for selenium WebDriver @Test annotation methods. If there Is single @Test annotation method In your test class […]
Part 9 41 : What kind of software testings are possible using selenium WebDriver? We can use It for any other purpose except […]
You will find JQuery date picker In many software web applications. Selecting date from JQuery date picker Is not hard task but […]
Part 8 36 : When I am running software web application’s tests In Firefox Browser using selenium webdriver, It Is not showing me […]
I have provided different examples of how to deal with J Query elements using selenium WebDriver like Drag and drop element using dragAndDrop […]
Part 7 31 : Can you tell me the names of different projects of selenium software automation testing tool? Answer : At present, Selenium software […]
To drag and drop any element on other element, We can use moveToElement or dragAndDrop methods of Actions class as described In THIS […]
Selenium webdriver software testing tool tutorials on Advanced User Interactions API, Advanced TestNG Tutorials for webdriver software testing tool, AutoIT software testing tool With Selenium […]
Part 6 26 : Can we automate desktop software application’s testing using selenium WebDriver? Answer : No. This Is the biggest disadvantage of selenium […]
We have already learnt how to drag and drop drag-able web element on drop-able web element In THIS POST and drag and […]
Part 5 21 : How does selenium RC software testing tool drive the browser? Answer : When browser loaded In Selenium RC, It ‘injected’ javascript […]