Presentation is loading. Please wait.

Presentation is loading. Please wait.

Testing Web Applications. Plan The presentation covers: Selenium framework Spring MVC Test framework HttpUnit framework.

Similar presentations


Presentation on theme: "Testing Web Applications. Plan The presentation covers: Selenium framework Spring MVC Test framework HttpUnit framework."— Presentation transcript:

1 Testing Web Applications

2 Plan The presentation covers: Selenium framework Spring MVC Test framework HttpUnit framework

3 Selenium

4 What is Selenium? Selenium is a suite of tools to automate web application testing across many platforms Tests run directly in the browser Two major components: Selenium IDE Selenium WebDriver

5 Traditional approach for testing Release Development Feature developed Acceptance Testing Bug found! Regression Testing Regression found!

6 Faster feedback Write test as you go Run them as often as you can Problems are found quickly Release Regression Testing Acceptance Testing Development

7 Why automated tests? Manual testing is slow, tedious and error-prone Especially for regression! Either take long time or less thorough What now? Start again? Regression Testing 3 months

8 With automated tests Consistently thorough Fast enough to start again and again and again… Regression Testing 10 minutes

9 Selenium components Selenium IDE an integrated development environment for Selenium tests Selenium WebDriver a Java library write Java code, WebDriver sends commands to a browser Selenium Server (Selenium Grid) allows to run tests on different machines against different browsers in parallel

10 Selenium usages Browser compatibility testing Test your application to see if it works correctly on different browsers and operating systems. The same script can run on any Selenium platform. System functional testing Create regression tests to verify application functionality and user acceptance.

11 How to start Download and install Selenium IDE It is implemented as a Firefox extension, and allows you to record, edit, and debug tests http://seleniumhq.org/download/ To launch Selenium IDE in Firefox select  Tools  Selenium IDE

12 Selenium IDE Firefox extension Easy record and playback Not just a recorder Intelligent field selection will use IDs, names, or XPath as needed

13 Selenium IDE Auto-complete for all common Selenium commands Walk through tests Debug and set breakpoints Save tests as HTML, Ruby scripts, or any other format

14 Selenium test format Selenium saves all information in an HTML table format Each record consists of: Command – tells Selenium what to do using actions or assertions (e.g. “open”, “type”, “click”, “assertText”) Target – tells Selenium which HTML element a command refers to (e.g. textbox, header, table) Value – used for any command that might need a value of some kind (e.g. “Hello”)

15 Example: Selenium test

16 Test writing strategy 1.Start recording in Selenium IDE 2.Execute scenario on a running web application 3.Stop recording in Selenium IDE 4.Add assertions

17 Creating tests and test suite Create several tests in Selenium IDE Save them as e.g. \webapp\tests\discussions-suite\MyTest1.html \webapp\tests\discussions-suite\MyTest2.html Create HTML file for test suite, e.g. \webapp\tests\discussions-suite\MyTestSuite.html Music Test Suite My Test 1 My Test 2

18 Selenium Concepts Element Locators Specify HTML elements Patterns Used for pattern matching values Action Manipulate the state of the application Upon failure, testing stops Accessors Store results in variables Automatically generates assertions Assertion Verify that the application generate the appropriate value

19 Element Locators id=id Select the element with the specified @id attribute. name=name Select the first element with the specified @name attribute. identifier=id Select the element with the specified @id attribute If no match is found, select the first element whose @name=id dom=javascriptExpression Find an element using JavaScript traversal of the HTML DOM. DOM locators must begin with " document. " dom=document.forms['myForm'].myDropdown dom=document.images[56]

20 Element Locators xpath=xpathExpression Locate an element using an XPath expression. XPath locators must begin with "//". xpath=//img[@alt='The image alt text'] xpath=//table[@id='table1']//tr[4]/td[2] link=textPattern Select the link (anchor) element which contains text matching the specified pattern. link=The link text

21 Locator Defaults Without a locator prefix, Selenium uses: dom, for locators starting with "document." xpath, for locators starting with "//" identifier, otherwise

22 Actions Represent something a user would do Manipulate the state of the application Actions generally come in 2 forms: action and actionAndWait action performs the action actionAndWait assumes a server call and thus waits longer for a response open automatically waits

23 Command Actions open Opens the target URL click* Clicks on the target element type* Enters the value specified by the value into the specified target element select* Selects a drop-down value specified by the value in the specified target element

24 Command Actions selectWindow Selects a popup window using the id specified by the target. If NULL, it returns to the main window goBack Simulates user clicking back in the browser close Simulates user clicking the close button of a popup window pause Pauses the execution of a script for an amount of time in milliseconds specified in the target

25 Command Actions fireEvent Simulate an event to trigger the onevent handler where the target specifies the element and the value specifies the event waitForValue Waits for an input, specified by the target, to have a certain value, specified by the value (Warning: If event doesn’t occur, apply previous fix to stop running script) store Stores the value specified by the target into the variable specified by the value

26 Command Actions chooseCancelOnNextConfirmation Instructs Selenium to select cancel on the next JavaScript dialog raised answerOnNextPrompt Instructs Selenium to return the specified target in response to the next prompt

27 Assertions Allows user to verify the state of the application Three modes: assert - upon failure, test is aborted verify - upon failure, the test continues running (logging the failure) waitFor Waits timeout time for a condition’s truthiness Great for testing background Ajax behavior

28 Selenium IDE plugins ScreenShot on Fail Page Coverage Highlight Elements Power Debugger File Logging Stored Variables Viewer and many more…

29 Selenium WebDriver Selenium 2.0 has many new exciting features and improvements over Selenium 1 The primary new feature is the integration of the WebDriver API The goal is to develop an object-oriented API that provides additional support for a larger number of browsers along with improved support for modern advanced web-app testing problems http://seleniumhq.org/docs/03_webdriver.html

30 Selenium WebDriver WebDriver makes direct calls to the browser using each browser’s native support for automation Can be used equally well in a unit testing or from a plain old “main” method Java, C#, Python, Ruby, Perl, PHP bindings are provided

31 Selenium WebDriver Maven dependency: Now you can use WebDriver just as any normal library: it is entirely self-contained, and you do not need to start any additional processes or run any installers before using it org.seleniumhq.selenium selenium-java 2.37.1

32 Selenium WebDriver Example import org.openqa.selenium.*; public class SeleniumExample { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); driver.get("http://www.google.com"); WebElement element = driver.findElement(By.name("q")); element.sendKeys("Cheese!"); element.submit(); System.out.println("Page title is: " + driver.getTitle()); // Google's search is rendered dynamically with JavaScript. // Wait for the page to load, timeout after 10 seconds (new WebDriverWait(driver, 10)).until(new ExpectedCondition () { public Boolean apply(WebDriver d) { return d.getTitle().toLowerCase().startsWith("cheese!"); } }); System.out.println("Page title is: " + driver.getTitle()); driver.quit(); } http://seleniumhq.org/docs/03_webdriver.html

33 Selenium-Grid Selenium-Grid allows to run your tests on different machines against different browsers in parallel http://seleniumhq.org/docs/07_selenium_grid.html

34 Selenium-Grid Reasons to use Selenium-Grid: To run your tests against multiple browsers, multiple versions of browser, and browsers running on different operating systems To reduce the time it takes for the test suite to complete a test pass

35 Selenium Resources Selenium Home Page http://seleniumhq.org/ Selenium dokumentācija http://seleniumhq.org/docs/ Par Selenium latviski (var būt novecojis) http://www.ante.lv/xwiki/bin/view/TrainingWebProgrammi ng/Selenium http://www.ante.lv/xwiki/bin/view/TrainingWebProgrammi ng/Selenium

36 Spring MVC Test Framework

37 Spring support for testing MVC Two levels of support: Unit-testing Integration testing Unit-testing org.springframework.test.web.ModelAndViewAssert Package: org.springframework.mock.web Integration testing Support for testing client and server-side Spring MVC code through a fluent API

38 Spring MVC Test Framework Loads the actual Spring configuration through the TestContext framework Always uses the DispatcherServlet to process requests No need for running in a Servlet container Builds on the familiar "mock" implementations of the Servlet API

39 Example http://docs.spring.io/spring/docs/3.2.5.RELEASE/spring-framework- reference/htmlsingle/#unit-testing-spring-mvc

40 HttpUnit

41 HttpUnit framework HttpUnit is an open source software testing framework used to perform testing of web sites without the need for a web browser http://httpunit.sourceforge.net/

42 Obtaining a web page response The center of HttpUnit is the WebConversation class, which takes the place of a browser talking to a single site Responsible for maintaining session context, which it does via cookies returned by the server Must create a request and ask the WebConversation for a response

43 Starting the conversation The response may now be manipulated either as pure text, as a DOM, or by using the various other methods WebConversation wc = new WebConversation(); WebRequest req = new GetMethodWebRequest( "http://www.meterware.com/testpage.html"); WebResponse resp = wc.getResponse(req);

44 Examining and following links The simplest and most common form of navigation among web pages is via links HttpUnit allows users to find links by the text within them, and to use those links as new page requests WebConversation wc = new WebConversation(); WebResponse resp = wc.getResponse( "http://www.httpunit.org/doc/cookbook.html"); WebLink link = resp.getLinkWith("response"); link.click(); WebResponse jdoc = wc.getCurrentPage();

45 Using the table structure of a web page The getTables() method will return an array of the top-level tables in the page, in the order in which they appear in the document Given a table, you can ask for one of its cells, and treat the result either as text or a DOM or ask for and tables, links, or forms nested within it

46 Table manipulation example The following code will confirm that the first table in the page has 4 rows and 3 columns, and that there is a single link in the last cell of the first row: WebTable table = resp.getTables()[0]; assertEquals("rows", 4, table.getRowCount()); assertEquals("columns", 3,table.getColumnCount()); assertEquals("links", 1, table.getTableCell(0,2).getLinks().length );

47 Working with forms There are a few basic things that a tester is likely to want to do with a form The most obvious first step is to verify the controls and their default values If they are correct, the tester will generally make some changes and submit the form to see how the system responds

48 Testing a form WebForm form = resp.getForms()[0]; assertEquals("La Cerentolla", form.getParameterValue( "Name" )); assertEquals("Chinese", form.getParameterValue( "Food" )); assertEquals("Manayunk", form.getParameterValue( "Location" )); assertEquals("on", form.getParameterValue( "CreditCard" )); form.setParameter( "Food", "Italian" ); form.removeParameter( "CreditCard" ); form.submit();

49 HttpUnit Resources HttpUnit home page http://httpunit.sourceforge.net/


Download ppt "Testing Web Applications. Plan The presentation covers: Selenium framework Spring MVC Test framework HttpUnit framework."

Similar presentations


Ads by Google