How To Capture Element Screenshot Using Selenium WebDriver

I have received many requests from blog readers to share example on how to capture specific element screenshot In selenium webdriver. As you know, Capturing entire page screenshot Is very easy task as described In THIS POST. But If you wants to capture screenshot of specific web element then you will feel that It Is … Read more

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