Selenium WebDriver Tips And Tricks

Sometimes you need to take tricky actions on software web application page. Selenium webdriver software testing tool do not have any direct method to perform such tricky actions. So you need to use some tricks in your webdriver test script to perform some actions on software web application page. Bellow given links will show you … Read more

WebDriver Latest Questions

Part 21 98 : Do you know any external API name using which we can read data from excel file?   Answer : We can use jxl API (Java Excel API) to read data from excel file. VIEW EXAMPLE We can use one more powerful API known as Apache POI API to read and write data In excel file. I … Read more

How To Get X Y Coordinates Of Element In Selenium WebDriver

Any software web element has Its own position on page and generally It Is measured In x and y pixels and known as x y coordinates of element. x pixels means horizontal position on page from left side and y pixels means vertical position on software web page from top side. You can find x y … Read more

Generating Interactive ReportNG Reports For Selenium WebDriver Test

You can not show TestNG default reports to your manager or client because they are not much more readable and Interactive. ReportNG Is very good add-on to generate Interactive and readable reports for selenium webdriver tests. It Is simple HTML reporting plug-In. Also It Is very very easy to configure ReportNG with your selenium project. … Read more