User Extensions, RC and Web Driver Anton Angelov QA Engineer SystemIntegrationTeam Telerik QA Academy Telerik QA Academy.

Slides:



Advertisements
Similar presentations
WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
Advertisements

JavaScript FaaDoOEngineers.com FaaDoOEngineers.com.
Test Automation with Selenium
Selenium Automation Testing Suite of Tools
Pubman and Selenium tests. What is Selenium Selenium is a suite of Web application test automation tools for any browser on any operating system –Firefox,
Selenium HP Web Test Tool Training
1 Chapter 12 Working With Access 2000 on the Internet.
Test Web applications using Selenium
Selenium – Testing Tool. What is Selenium? Selenium is a robust set of tools that supports rapid development of test automation for web-based applications.
Selenium Automation Testing Suite of Tools. What is Selenium? Selenium is a robust set of tools that supports rapid development of test automation for.
Advanced Selenium IDE and Web Driver Telerik Software Academy Software Quality Assurance.
Selenium Web Test Tool Training Using Ruby Language Discover the automating power of Selenium Kavin School Kavin School Presents: Presented by: Kangeyan.
Automation using Selenium Authored & Presented by : Chinmay Sathe & Amit Prabhu Cybage Software Pvt. Ltd.
Chapter 6: Forms JavaScript - Introductory. Previewing the Product Registration Form.
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
Selenium automated testing in Openbravo ERP Quality Assurance Webinar April 8th, 2010.
Val Kravets, Luis Sanchez, Allen Chung, Phillip Anderson, Leyla Norooz, Brian Ramnarian, Todd Watson.
Robot Framework – Basic Level. Date: Version:1.0 Page 1.
1 Test Automation For Web-Based Applications Selenium HP Web Test Tool Training Portnov Computer School.
© 2012 LogiGear Corporation. All Rights Reserved Robot framework.
Testing Web applications. Selenium What is Selenium? Selenium is a suite of tools to automate web application testing across many platforms Tests run.
Developing for Selenium Grid
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
Tutorial 111 The Visual Studio.NET Environment The major differences between Visual Basic 6.0 and Visual Basic.NET are the latter’s support for true object-oriented.
© 2005 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. Data Structures for Java William H. Ford William R. Topp Appendix E The EZJava.
INTRODUCTION TO JAVASCRIPT AND DOM Internet Engineering Spring 2012.
Extending HTML CPSC 120 Principles of Computer Science April 9, 2012.
Testing Web Applications. Plan The presentation covers: Selenium framework Spring MVC Test framework HttpUnit framework.
Selenium and Selenium on Rails. Agenda  Overview of Selenium Simple Selenium Tests Selenium IDE  Overview of Selenium on Rails  Problems with Selenium.
And the PageObject Design Model.  How Selenium Remote Control works  You launch a server on your test machine.  Your tests connect to that server via.
Web Automation Testing With Selenium By Rajesh Kanade.
Pubman and Selenium tests. What is Selenium Selenium is a suite of Web application test automation tools for any browser on any operating system –Firefox,
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
WARSZAWQA#10.  Author: Michal Lamperski  Contact:  Find me on LinkedIn.
Introduction Selenium IDE is a Firefox extension that allows you to record, edit, and debug tests for HTML Easy record and playback Intelligent field selection.
Lec 18 Web with Selenium 1 CSCE 747 Fall 2013 CSCE 747 Software Testing and Quality Assurance Lecture 16 Testing Web Applications 10/23/
Page 1 | | ©2009 Installation of Selenium IDE and RC Amit Maheshwari 20 th Sep’10.
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
Plug-in Architectures Presented by Truc Nguyen. What’s a plug-in? “a type of program that tightly integrates with a larger application to add a special.
Test Automation For Web-Based Applications Portnov Computer School 1 Selenium HP Web Test Tool Training.
Selenium Date:06/10/2009. May 13, Agenda Testing – Test Automation Selenium – Introduction – Features – Supported platforms Selenium Commands –
SELENIUM By- Vivek Singh Jeena, Inderpreet Singh, Ankusha Saxena, Bhanupriya D.P, Shubham Yadav, Madhavi Aminigadda.
Selenium server By, Kartikeya Rastogi Mayur Sapre Mosheca. R
Test Automation Using Selenium Presented by: Shambo Ghosh Ankit Sachan Samapti Sinhamahapatra Akshay Kotawala.
Selenium & Web Accessibility Nishant Singh Sumedha Mitra Vivek Gupta Vishesh Mangal Biswajeet Mandal Srivash Kangsabanik.
Text Selenium server 31 – October By, Vivek Singh Jeena Inderpreet Singh Ankusha Saxena Bhanupriya D.P Shubham Yadav Madhavi Aminigadda.
Tata Consultancy Services1 WebDriver Basics Submitted By : Akhil K Gagan Deep Singh Naveenrajha H M Poornachandra Meduri Shubham Utsav Sunil Kumar G Vivek.
Robot Framework – Basic Level. Date: Version:1.0 Page 1.
Testing Your Alfresco Add-ons Michael Suzuki Software Engineer.
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
Testing Your Alfresco Add-ons Michael Suzuki Software Engineer.
What is Selenium Web Driver? - Selenium Training Collection.
Arklio Studija 2007 File: / / Page 1 Automated web application testing using Selenium
Introduction of Selenium Eli Lu 2016/10/13. Outline What is selenium ? Selenium Projects Selenium Sponsors Easy to use Useful Feature & Tools Useful Links.
Test Web applications using Selenium
Selenium HP Web Test Tool Training
The Zen of UI Test Automation
Selenium and Selenium on Rails
JRA2: Acceptance Testing senarious
Testing Your Alfresco Add-ons
CSCE 747 Software Testing and Quality Assurance
Onlineitguru Selenium is one of the most widely used open-source tool that is used for testing software or Automation. It is licensed under Apache License.
Haden Jackson-Robbins
Cordova & Cordova Plugin Installation and Management
Selenium Web Test Tool Training Using Ruby Language
Selenium Tutorials Cheyat Training.
Getting Started With Solr
Web Application Development Using PHP
Selenium IDE Installation and Use.
Presentation transcript:

User Extensions, RC and Web Driver Anton Angelov QA Engineer SystemIntegrationTeam Telerik QA Academy Telerik QA Academy

 Selenium User Extensions  Principles and Usage  Selenium RC  Selenium WebDriver  Selenium Grid 2

Started out around 2004 from Thoughtworks WebDriver merged with Selenium Selenium 1 used JavaScript to drive browsers Selenium 2 was released

 User extensions  External.js files containing JavaScript functions  Suitable for multiple use of JavaScript snippets  Easier to change  Function’s design pattern  "do" tells Selenium that this function can be called as a command 5 Selenium.prototype.doFunctionName = function(){...}

 User extensions  Function’s design pattern  custom locator – all locateElementByFoo methods on the PageBot prototype are added as locator-strategies 6 PageBot.prototype.locateElementByPartialId = function(text, inDocument) { return 'Z')][1]".replace(/Z/,text), inDocument); return 'Z')][1]".replace(/Z/,text), inDocument); }; }; Locates an element by a partial match on id

 The main Selenium project for a long time  Before merging WebDriver and Selenium into Selenium 2  Selenium 1 is still actively supported  (mostly in maintenance mode)  Provides some features that are not yet available in Selenium 2  Support for several languages (Java, JavaScript, PRuby, HP, Python, Perl and C#)  Support for almost every browser 9

 The Selenium Server  Launches and kills browsers  Interprets and runs the Selenese commands passed from the test program  Acts as an HTTP proxy, intercepting and verifying HTTP messages passed between the browser and the AUT 10

11

 Selenium Server  Receives Selenium commands from the test program  Interprets them  Reports back to your program the results of running those tests  Bundles Selenium Core and automatically injects it into the browser  When the test program opens the browser 12

 Selenium-Core is a JavaScript program  A set of JavaScript functions  Interprets and executes Selenese commands using the browser’s built-in JavaScript interpreter 13

 Selenium Server can be downloaded from: 

 The Selenium RC server is simply a Java jar file (selenium-server.jar),  Doesn’t require any special installation  Just download the zip file and extract the server in the desired directory 15

 Running Selenium Server requires Java Development Kit (JDK) to be installed on your machine and included in the class path  e/downloads/index.html e/downloads/index.html e/downloads/index.html  Use CMD  Navigate to the directory where Selenium RC’s server is located and run the following from a command-line console:  java -jar selenium-server.jar 16

 Using the –htmlsuite argument, we have managed to run our Selenium IDE tests through Selenium RC java -jar "C:\Software\selenium-server-standalone jar" -htmlsuite *firefox " "D:\Selenium\TestSuite.html" "D:\Selenium\result.html" 17 The Base URL Path to test suite Path to test results

 Most common Selenium RC arguments  port – since Selenium RC acts as a proxy between your tests and the application being tested, it has to use a port to listen for commands  userExtensions – we can access all the extra commands in our tests  firefoxProfileTemplate – if you require a special profile, or if you need to make sure that a specific Firefox Add-on is installed 18

19 Selenium Core Framework with the test suite The test steps The results

20  When the tests have finished it will write the results to a file in a HTML format  showing which tests have passed or failed  the command that it may have failed on

 Run the same set of tests on different code branches (and browsers) on daily basis in a continuous integration environment  Can be used for any Java Script enabled browser  Can be used to automate complex test cases  Makes it possible to create fast, robust and scalable automation 22

 Positive points  Works with any browser that supports JavaScript  More life-like interaction with the browser  Not bound by the JavaScript sandbox  Does not require a proxy between the test and the browser 23

 Selenium WebDriver  A tool for automating web application testing  Developed to better support dynamic web pages where elements of a page may change without the page itself being reloaded(AJAX)  Makes direct calls to the browser using each browser’s native support for automation the page itself being reloaded. 25

WebDriver Wire Protocol

 All implementations of WebDriver that communicate with the browser, or a Remote WebDriver server shall use a common wire protocol  The wire protocol defines a RESTful web service using JSON over HTTP  implemented in request/response pairs of "commands" and "responses" 27

 Selenium-RC "injected" JS functions into the browser when the browser was loaded and then used its JS to drive the AUT within the browser  Selenium-WebDriver makes direct calls to the browser using each browser’s native support for automation 29

30 Create New Project in VS  Using NuGet packages Install NuGet package manager and navigate to it Search for selenium and install the first item in the result list

 Create an instance of a driver  Note: additional steps are required to use Chrome Driver, Opera Driver, Android Driver and iPhone Driver Chrome DriverOpera DriverAndroid DriveriPhone Driver Chrome DriverOpera DriverAndroid DriveriPhone Driver IWebDriver driverOne = new FirefoxDriver(); IWebDriver driverTwo = new InternetExlorerDriver(); 31 driver.Url = "  Navigate to page

 Choose and download browser driver you want to use for your tests (ex. Chrome) 32 using OpenQA.Selenium; usiOpenQA.Selenium.Chrome; namespace WebDriverDemo { class Program class Program { static void Main(string[] args) static void Main(string[] args) { IWebDriver driver = new IWebDriver driver = new driver.Url= " driver.Url= " } }} The IWebDriver interface can be find under OpenQA.Selenium namespace You have to tell the WebDriver API where this ChromeDriverServer is located

 Elements can be located by the same properties as in the IDE  By ID IWebElement element = driver.FindElement(By.Id("coolestWidgetEvah")); 33  By Class IList cheeses = driver.FindElements(By.ClassName("cheese"));  By Tag Name IWebElement frame = driver.FindElement(By.TagName("iframe"));

 By Name IWebElement cheese = driver.FindElement(By.Name("cheese")); 34  By Link Text  By CSS Selector  By XPath IWebElement cheese = driver.FindElement(By.LinkText("cheese")); IList inputs = driver.FindElements(By.XPath("//input")); IWebElement cheese = driver.FindElement(By.CssSelector("#food span.dairy.aged"));

 Explicit wait WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10)); IWebElement myDynamicElement = wait.Until ((d) => { return d.FindElement(By.Id("someDynamicElement")); }); 35 driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromS econds(10));  Implicit wait

 Type Text into a field using Selenium WebDriver SendKeys() function // Find the text input element by its name IWebElement element = driver.FindElement(By.Name("search")); IWebElement element = driver.FindElement(By.Name("search")); // Enter something to search for element.SendKeys("telerik"); element.SendKeys("telerik"); 36

 WebDriver does not support the well-known commands of Selenium IDE like verifyTextPresent public static void AssertTextPresent(String value) { if (!driver.PageSource.Contains(value)) if (!driver.PageSource.Contains(value)) { throw new Exception(value + " is not present"); throw new Exception(value + " is not present"); }} 37 We can implement so

 There wasn’t any built-in method to assert text on a page  You can do something along the lines of static void Main(string[] args) { IWebDriver driver = new IWebDriver driver = new driver.Url= " driver.Url= " Assert.AreEqual("Google", driver.Title); Assert.AreEqual("Google", driver.Title);} 38

 The test results are limited by the Unit Testing Framework we use  ex. NUnit, VS Test Team, Gallio 39 Uning NUnit-Results

 Plugins for Selenium IDE  add WebDriver backed Selenium formatters  allows users to take advantage of WebDriver without having to modify their tests  US/firefox/addon/webdriver-backed-formatters/ US/firefox/addon/webdriver-backed-formatters/ US/firefox/addon/webdriver-backed-formatters/ 41

 You can add any format you like by writing JavaScript code  Open Options dialog ->"Options…" in the menu bar -> "Formats" tab  Create a new format by clicking "Add" button  There are 3 empty functions  parse  format  formatCommands 42

 The "parse" function is almost opposite of "format". This function parses the String and updates test case 43 function parse(testCase, source) { var doc = source; var doc = source; var commands = []; var commands = []; while (doc.length > 0) { while (doc.length > 0) { var line = /(.*)(\r\n|[\r\n])?/.exec(doc); var line = /(.*)(\r\n|[\r\n])?/.exec(doc); var array = line[1].split(/,/); var array = line[1].split(/,/); if (array.length >= 3) { if (array.length >= 3) { var command = new Command(); var command = new Command(); command.command = array[0]; command.target = array[1]; command.command = array[0]; command.target = array[1]; command.value = array[2]; commands.push(command); command.value = array[2]; commands.push(command); } doc = doc.substr(line[0].length); doc = doc.substr(line[0].length); } testCase.setCommands(commands); testCase.setCommands(commands);}

 The "formatCommands" function is similar to "format" function, but is used to copy part of the test case into the clipboard 44 function formatCommands(commands) { var result = ''; var result = ''; for (var i = 0; i < commands.length; i++) { for (var i = 0; i < commands.length; i++) { var command = commands[i]; var command = commands[i]; if (command.type == 'command') { if (command.type == 'command') { result += command.command + ',' + command.target + ',' + command.value + "\n"; result += command.command + ',' + command.target + ',' + command.value + "\n"; } } return result; return result;} 'ext.Driver.Navigate().GoToUrl("' + command.target.toString() + '");';

 The "format" function creates an array of commands contains command object (Command, Target, Value) 45 function format(testCase, name) { var result = ''; var result = ''; var commands = testCase.commands; var commands = testCase.commands; for (var i = 0; i < commands.length; i++) { for (var i = 0; i < commands.length; i++) { var command = commands[i]; var command = commands[i]; if (command.type == 'command') { if (command.type == 'command') { result += command.command + ',' + command.target + ',' + command.value + "\n"; result += command.command + ',' + command.target + ',' + command.value + "\n"; } } return result; return result;} return formatCommands(testCase.commands);

 The PageFactory class is an extension to the PageObject design pattern 46 private IWebDriver driver; [FindsBy(How = How.Id, Using = "SearchTerm")] private IWebElement Search; // How.Id = SearchTerm [FindsBy(How = How.Id, Using = "SearchButton")] private IWebElement Button; public FindUsersPage Do(string UserName) {Search.SendKeys(UserName);Button.Click(); PageFactory.InitElements(driver, (new FindUsersPage(this.driver))); return new FindUsersPage(driver); } FindUsersPage PageObject must be created FindUsersPage PageObject must be created The InitElements method of PageFactory initializes the elements of the PageObject Install Selenium WebDriver Support Classes package Install Selenium WebDriver Support Classes package

 Selenium-Grid allows you run your tests on different machines against different browsers in parallel 48 Hub Node Drivers

Questions?

1.Create Automated Selenium Test for Log in in Use logical steps and appropriate validations to create a good test. Use logical steps and appropriate validations to create a good test. Create.bat file to run your test under different browsers, don’t forget to include the user extension you used for the logical steps. Create.bat file to run your test under different browsers, don’t forget to include the user extension you used for the logical steps. Export your test to WebDriver and run it (use NUnit or Gallio). Export your test to WebDriver and run it (use NUnit or Gallio). 51