Showing posts with label WebDriver. Show all posts
Showing posts with label WebDriver. Show all posts

Thursday, March 6, 2014

Internet Explorer WebDriver and Desired capabilities

Internet Explorer Webdriver 

Selenium webdriver provides cross browser support thus comes with driver package to run tests on Internet Explorer. Internet explorer webdriver is very complex to use and sometimes can be big pain area. However, we can improve Internet explorer performance by using appropriate capabilities for webdriver.

 Before we proceed further to Internet explorer capabilities we must know how to initialize Internet Explorer webdriver?

First Step would be to download the IEDriverServer for using Internet Explorer driver. without IEDriverServer the Internet explorer driver will not work properly. We can download the IEDriverServer file from this location for both 32 bit and 64 bit OS version. Next is to place this file either in your project path or you can place file at other location and use below code to use IEDriverServer file. Finally, use below code to initialize the Internet Explorer driver.

File file =null;
if (new File("C:\\Program Files (x86)").exists())
{
file = new File( "C:\\IEDriverServer_X64.exe");
}else
{
file = new File( "C:\\IEDriverServer_X86.exe");
}
System.setProperty("webdriver.ie.driver", file.getAbsolutePath());

WebDriver driver = new InternetExplorerDriver(dc);


Internet Explorer Capabilities 


Internet explorer driver supports some important capabilities which can be used to smooth execution of test on Internet Explorer. Some of these capabilities help us to unable java scripts, ignore the security domain setting for IE , Persistent hovering , require window focus etc... These capabilities ease the way the for automation using selenium webdriver on Internet explorer. More details on the Internet explorer can be found here. Below code will guide on how to use the desired capabilities for Internet Explorer driver.

DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability(InternetExplorerDriver.ENABLE_PERSISTENT_HOVERING,false);
dc.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS, false);
dc.setCapability(InternetExplorerDriver.UNEXPECTED_ALERT_BEHAVIOR, true);
dc.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
dc.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true); 
dc.setJavascriptEnabled(true); 
WebDriver driver = new InternetExplorerDriver(dc);

Above code will initiate Internet Explorer Driver with the capabilities.This will solve most of the problems with Internet explorer driver. It will be easier to handle to the Internet explorer issues. Some important capabilities of Internet Explorer webdriver are as follows:

ignoreProtectedModeSettings : Whether to skip the protected mode check. If set, tests may become flaky, unresponsive, or browsers may hang. If not set, and protected mode settings are not the same for all zones, an exception will be thrown on driver construction. Only "best effort" support is provided when using this capability.
ignoreZoomSetting : Indicates whether to skip the check that the browser's zoom level is set to 100%. Value is set to false by default.
enablePersistentHover : Determines whether persistent hovering is enabled (true by default). Persistent hovering is achieved by continuously firing mouse over events at the last location the mouse cursor has been moved to.
requireWindowFocus : Determines whether to require that the IE window have focus before performing any user interaction operations (mouse or keyboard events). This capability is false by default, but delivers much more accurate native events interactions.


Friday, January 24, 2014

Selenium WebDriver 2.0

What is selenium ?

Selenium is a set of different software tools each with a different approach to supporting test automation.The entire suite of tools results in a rich set of testing functions specifically geared to the needs of testing of web applications of all types. These operations are highly flexible, allowing many options for locating UI elements and comparing expected test results against actual application behavior. One of Selenium’s key features is the support for executing one’s tests on multiple browser platforms.


History:


Selenium first came to life in 2004 when Jason Huggins was testing an internal application at ThoughtWorks. Being a smart guy, he realized there were better uses of his time than manually stepping through the same tests with every change he made. He developed a Javascript library that could drive interactions with the page, allowing him to automatically rerun tests against multiple browsers. That library eventually became Selenium Core, which underlies all the functionality of Selenium Remote Control (RC) and Selenium IDE. Selenium RC was ground-breaking because no other product allowed you to control a browser from a language of your choice.


Webdriver 2.0 :

WebDriver is a tool for automating testing web applications, and in particular to verify that they work as expected. It aims to provide a friendly API that's easy to explore and understand, which will help make your tests easier to read and maintain.Selenium-WebDriver makes direct calls to the browser using each browser’s native support for automation.

Selenium webdriver can be used with diffrent browser and how it drives the browser means make native call to browser is entirely depends on the browser in use. Webdriver provides very easy to use APIs and can be configured with variety of programming language to write test cases. 

Webdriver can supports the following web browsers:
Internet Explorer,Firefox,chrome,safari, opera.

Languages you can use with webdriver are:
.Net,Java,Perl,PHP,Python,Ruby.

References:  Selenium