Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
WebDriver that Won't Drive You Crazy
Search
Jim Holmes
April 30, 2018
Programming
0
160
WebDriver that Won't Drive You Crazy
Workshop for StarEast and Romainian Testing Conference
Jim Holmes
April 30, 2018
Tweet
Share
More Decks by Jim Holmes
See All by Jim Holmes
Adapting to Change in Software Delivery
jimholmes
0
46
Public_Speaking.pdf
jimholmes
0
61
Trusted System Boundaries
jimholmes
0
61
What's Worse? Zombies or Brittle UI Tests?
jimholmes
0
81
Odd Parallels Between Weightlifting and Software Delivery
jimholmes
0
41
Is Quality The Bottleneck?
jimholmes
0
90
Don't Fear Leadership
jimholmes
0
64
Intro To TDD
jimholmes
1
50
Honor Flight #20 (Bay Area) Recap
jimholmes
0
98
Other Decks in Programming
See All in Programming
RWC 2024 DICOM & ISO/IEC 2022
m_seki
0
210
range over funcの使い道と非同期N+1リゾルバーの夢 / about a range over func
mackee
0
110
rails statsで大解剖 🔍 “B/43流” のRailsの育て方を歴史とともに振り返ります
shoheimitani
2
930
フロントエンドのディレクトリ構成どうしてる? Feature-Sliced Design 導入体験談
osakatechlab
8
4.1k
Webエンジニア主体のモバイルチームの 生産性を高く保つためにやったこと
igreenwood
0
330
快速入門可觀測性
blueswen
0
340
採用事例の少ないSvelteを選んだ理由と それを正解にするためにやっていること
oekazuma
2
1k
短期間での新規プロダクト開発における「コスパの良い」Goのテスト戦略」 / kamakura.go
n3xem
2
170
KMP와 kotlinx.rpc로 서버와 클라이언트 동기화
kwakeuijin
0
140
これが俺の”自分戦略” プロセスを楽しんでいこう! - Developers CAREER Boost 2024
niftycorp
PRO
0
190
useSyncExternalStoreを使いまくる
ssssota
6
1k
ゆるやかにgolangci-lintのルールを強くする / Kyoto.go #56
utgwkk
1
370
Featured
See All Featured
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
28
2.1k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
26
1.9k
A Modern Web Designer's Workflow
chriscoyier
693
190k
We Have a Design System, Now What?
morganepeng
51
7.3k
The Art of Programming - Codeland 2020
erikaheidi
53
13k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
127
18k
The Language of Interfaces
destraynor
154
24k
Statistics for Hackers
jakevdp
796
220k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
59k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
95
17k
Site-Speed That Sticks
csswizardry
2
190
Agile that works and the tools we love
rasmusluckow
328
21k
Transcript
WebDriver That Won’t Drive You Crazy
Get Latest Slides At http://speakerdeck.com/ jimholmes
Jim Holmes
[email protected]
github.com/jimholmes @aJimHolmes
Logistics
Time Exercises Breaks Backlog
Disclaimers
I’m not an expert
I’m “seasoned”
My workshops are collaborative
Stuff WILL Break
Goals
There Are No “Best Practices”
Know the fundamentals
Test the right things
Get the right coverage
Write good code
You
What are Two Things you hope to learn?
Opening Exercises
What does “Quality” mean to you?
If Testing were a sport, what sport would it be?
Thanks to Karen Greaves and Samantha Laing A Coach’s Guide
to Agile Testing https://leanpub.com/AgileTesting
What’s Our Job?
Who guarantees “quality” ??
Risk
Value
Risk and Value guide all our tests. ESPECIALLY WebDriver tests
Types of Testing
“test” versus “check”
Any failure is a starting point
Unit Tests
40 hours TIMES $20 per hour EQUALS $800
Integration (or Service) Tests
Using Postman When I call the create item web service
with a new item service template Then the item shows up in the database
User Interface (or end-to-end)
(NOT “just” testing of JavaScript in browser)
Using any of our supported browsers And I don’t have
anything in my cart When I add bacon, tires, and a frog to my cart Then I will see those items in my cart
Exploratory Testing
Using SQL Injection, malformed data, and oversized data I’m going
to explore the search product screens For 45 minutes To see what interesting (and scary!) stuff I can find
https://martinfowler.com/articles/practical-test-pyramid.html
https://twitter.com/noahsussman/status/836612175707930625
Box of rocks
There are no ‘best practices’ There is no ‘one testing
ring to rule them all’
Security Accessibility Scalability Performance Usability Compliance Mom
Demo What it looks like running together
Working With Risk
Setup
Repository https://github.com/ jimholmes/ SaneWebDriver-CSharp SaneWebDriver-Java
None
First run in Eclipse
First run in Visual Studio
Overview
Components WebDriver APIs Drivers Frameworks Libraries Tools
Browser
Browser WebDriver
Browser WebDriver
IWebDriver browser = new FirefoxDriver(); browser.Navigate().GoToUrl(“SOMEPLACE”);
WebDriver Bindings Support Classes .NET Java Ruby Python JavaScript Perl
blah blah blah blah WebDriverWait ExpectedConditions etc. +
Host System Browser WebDriver Bindings + support classes
Host System Browser WebDriver Bindings + support classes Driver ChromeDriver,
eg
Host System Browser WebDriver Bindings + support classes Driver ChromeDriver,
eg
Host System Browser WebDriver Bindings + support classes Driver ChromeDriver,
eg
Host System Browser WebDriver Bindings + support classes Driver ChromeDriver,
eg
Host System Browser WebDriver Bindings + support classes Driver ChromeDriver,
eg
Host System Browser WebDriver
Host System Browser WebDriver Driver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System Browser WebDriver Driver Remote WebDriver
Host System WebDriver Selenium Server or Grid Host System Browser
Driver Remote WebDriver
Host System Browser Driver Remote WebDriver Test Framework WebDriver Selenium
Server or Grid
Assert.IsNotNullOrEmpty( grid.FindElement( By.CssSelector(SOME_ELEMENT)).Text);
Test Framework Browser WebDriver Driver
Language Framework Test Framework Browser WebDriver Driver
GIVEN I am logged on as a Salesperson WHEN I
create a new lead THEN that contact appears only in my leads
Maintainability
Your Test Suite should NOT BE
“flaky”
Require lots of time to change or fix
Your Test Suite SHOULD BE
Valuable
Reliable
Trustworthy
Easy to Change
How to get there
Team With the Developers
Small Steps
Think Before You Code
The best code you write is that which you don’t
Refactor
Code can be like poetry
Think Plan Fail Learn Fail Less
WebDriver 101
The Basics
Test Layout: Arrange Act Assert
Test One Thing
Locators
IDs CSS Selectors XPath
Async
What is Async?
How do we avoid it driving us insane?
Write the First Test
Is the Grid there?
Refactor
Setup / Teardown
Refactor Again
Page Objects Know the page Not the test
Clean Tests Know the test Not the page
SRP Test/do one thing (and do it well)
DRY/moist Don’t Repeat Yourself (except where it makes sense)
More Advanced Concepts
Understand Coverage
What Tests Do We Need?
Walkthrough: Unit and Integration
Backing APIs
Use Helper Libraries
Team With the Developers
Test Data Setup
Testable Systems
Own the System Code? USE THAT POWER!
Hack the UI
Locators Custom IDs
Async flags
Better Tests
Hack the System
Feature Toggles Mock Services
Better Tests
Now What?
Factories Configuration Lifecycle Management
https://thefriendlytester.co.uk/2014/02/webdriver-factory.html
CI/CD
Cloud
Discussion: Parameterizing for Different Envs
Parallel
None
Parallelization Solves Everything!
Parallelization Solves Everything!
None
Parallelization Solves Everything!
Fix Your Dang System!
bit.ly/3HoursTo3Mins
Discussion: Test Stability in Parallel Execution
Takeaways
None
Automate High-Value, High Risk
Avoid Overlapping Coverage
Test Code is Production Code
Manage Your Data
Build Out APIs
Avoid End-To-End
Parallelization as LAST RESORT
bit.ly/leadershipjourney
A Couple Closing Remarks
0) No SharePoint
B) Hug your loved ones RIGHT NOW
THANK YOU