1 / 45

Why Your Se Tests are So Dang Brittle… …and what to do about it

Why Your Se Tests are So Dang Brittle… …and what to do about it. Patrick Wilson-Welsh Dawn Cannan. Introduction. Patrick Welsh Senior Agile Consultant Pillar Technology Group http://pillartechnology.com pwelsh@pillartechnology.com http://patrickwilsonwelsh.com

joelle
Download Presentation

Why Your Se Tests are So Dang Brittle… …and what to do about it

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Why Your Se Tests are So Dang Brittle……and what to do about it Patrick Wilson-Welsh Dawn Cannan

  2. Introduction • Patrick Welsh • Senior Agile Consultant • Pillar Technology Group • http://pillartechnology.com • pwelsh@pillartechnology.com • http://patrickwilsonwelsh.com • http://coderetreat.ning.com/ • mobile: 248 565 6130 • twitter: patrickwelsh

  3. PrerequisitesYou’ll need to know some stuff. To follow, you’ll need to know Selenium, Java, xpath, css, HTML, and a bit of Object Oriented Design.And, I will be gentle. 

  4. We’re here to help …

  5. How hard is it to regression test an entire enterprise web app using any web-app-GUI-black-box testing tool?

  6. too hard: avoid

  7. Number #1 Reason Selenium RC, through the web app GUI tests are so brittle?

  8. Because you are writing too many of them.Let me put that another way.

  9. You are committing too high a percentage of total test-automation and programming resources to that specific kind of automated testing. Have a plan for outgrowing that pattern.Actually, have a fairy tale:

  10. Driving on the ice in Michigan. Avoid it whenever you can. Know how to do it well.

  11. 3 kinds of automated tests

  12. GUIend-2-end, integration, story, acceptanceunit/micro/isolation

  13. TCO % of automated testing work

  14. good: least investment/ROIgood: most investment/ROI

  15. least rework & waste; lowest TCO

  16. But that’s not your triangle, yet.

  17. we often start here

  18. good: easy to learn bad: hard to learn for good reason!

  19. bad: high TCO, low ROI good: low TCO, high ROI But again, the price

  20. So, you’re stuck with more Se testing than you should be doing. That’s ok. So am I.

  21. How can we minimize the brittleness of these inherently brittle tests?

  22. Following are things that help me and my teams.

  23. Don’t tell me testing is “not your job”

  24. Don’t say programming is “not your job”

  25. Automated testing is everybody’s job, because the Definition of Done is everybody’s job.Se tests are written by testers and programmers together. Period. The whole team shares sufficient testing as part of Definition of Done.

  26. Some issues in Java Selenium RC testing:Mixed abstraction layer logic (test + biz domain + testing framework + …)Obscure page-flow and page verification.Verifying state across multiple pages. DefaultSelenium (et al) access control.Dynamic HTML/Ajax

  27. Example 1: Bad-Ole Se RC Multi-Page-FlowProcedural code for verifying that the same links show up on each of several pages. Even method extraction and custom assertions may not help as much as you need.

  28. Se-Specific, General Guidelines :Only use Se as last resort; play to its strengthsDon’t use Se IDE except for prototypingHand-roll Object-Oriented Se RC testsSeparate framework code & test code

  29. A principle to consider for Se testing:DRY test framework; “wet” test code.

  30. src source folder: DRY reusabilitysrc folder contains only reusable domain-specific and domain-independent classes. Domain-specific pages, panes, and common components (nav menus, etc). Domain-independent framework (page elements/controls, Selenium and jQuery façade/decorator, locator strategy code)

  31. test source folder: one-off, wet test codetest folder contains behaviorally-organized test scenarios. Nearly all of them happy paths. Test scenarios for page flow manipulation and state verification can include quite a bit of duplication. If you prefer, extract private helper methods like “loginAndNavigateToSuchAndSuchPage()”

  32. Specific Patterns in the selenium-rc-patterns eclipse project.

  33. Pattern: Reusable Element Objects Framework • Different kinds of page elements get matching classes; all extend BaseElement. • All are completely generic; unrelated to biz domain.

  34. Pattern: Reusable Selenium Singleton Facade • All access to DefaultSelenium and SeleniumServer (jetty proxy) are outside test code. • All access to them is via singleton inside façade • Façade decorates DefaultSelenium with other cool stuff you need

  35. Pattern: Self-Verifying, Lazy-Load Page Objects • Biz-domain-specific classes wrap the behavior of specific pages in your app, in page-specific ways. • When you navigate to a page by clicking on a link, the matching page object gets launched, and waits until it is fully loaded by that object’s definition (a css locator).

  36. Pattern: Elements that are Page Object Factories • When you instantiate a DhtmlLink class, you parameterize it with the PageObject.class that you want to be launched when you click on that link. • This pushes page flow semantics deep into the actual link flow, emulating actual app, and keeps page flow DRY.

  37. Remember the good old days of every browser-resident change resulting from an HTTP Response to an HTTP Request? (Sigh.)Well kiss em goodbye. We live in a dynamic, RIA world now. Ajax. Etc.Whole desktops, coming to browsers near you… except, differently!

  38. Principles to consider for testing dynamic stuff:The rendered HTML is less and less your friend.XPATH is not standard, thus not your friend. The in-memory DOM is your friend. CSS element location strategy is your friend.jQuery is your friend.

  39. Pattern: CSS Element locator strategies for DHTML/Ajax • Use id or name attributes if you got ‘em • Use css as a second-resort locator • Only use xpath as a last-resort element locator • Actually, forget it. Never use xpath.

  40. Pattern: Using jQuery to Verify Dynamic Visibility • Consider usingSeto inject jQuery (or some such js library) into a page, to get direct access to the DOM, not the rendered HTML, when you need • There will increasingly be behaviors for which jQuery, being cross-browser in a fairly standard way, is a better choice for DOM state verification than older techniques • jQuery support: coming to a Selenium near you?

  41. Pattern: Common Page Element Singletons • If all pages in an app have certain common elements, consider hanging a static singleton off a BasePage object.

  42. Pattern: Multi-Page Rule Verification • A MultiPageTraverser is instantiated with a rule that implements a Verifiable interface. • Verifiable.verify() call on each page does the right thing.

  43. Get this book...

  44. …and this book.

  45. Q/A

More Related