How To Download And Install Auto IT Step By Step

As I described In PREVIOUS POST, Auto IT Is opensource automation tool and can help us to handle windows element In our selenium webdriver test cases. We need AutoIT and AutoIT script editor to write test scripts. Steps To Download AutoIT You can download AutoIT from Its official website. Click Here to go AutoIT to download … Read more

What Is AutoIT V3 And Why We Need It In Selenium WebDriver

As you know, It Is very hard to automate windows popup dialog box like file upload dialog, file download and save dialog, windows authentication dialog etc In selenium webdriver because It Is designed to automate web applications. Surly there are few work around to do all these things In selenium webdriver but do not have any … Read more

WebDriver Interview Questions With Answers

Part 19 88 : In XPath, I wants to do partial match on attribute value from beginning. Tell me two functions using which I can do It. Answer : We can use bellow given two functions with XPath to find element for software web page using attribute value from beginning. contains() starts-with() 89 : I have used findElements In my software … Read more

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 execution. Selenium WebDriver Is very wast API and It has many built In methods to perform very small small operations on web page. Reading font property manually Is very simple task using firebug as … Read more