SlideShare a Scribd company logo
Automated Web Testing
using JavaScript
Simon Guest, Distinguished Engineer.
Neudesic, LLC
Web testing over the years...
Automated Web Testing using JavaScript
Paradigm Shift
JavaScript Testing Tools
Why JavaScript for Testing?
4 Free
4 Open source
4 Modular
4 Active and vibrant community
4 Client and server in JavaScript - why not tests?
Goals of this session
Explore automated Web testing using JavaScript
Unit testing vs. end-to-end testing
Interchangeable frameworks for JavaScript Testing
When not to write tests!
Simple function to add two numbers
var add = function(x, y){
var result = x + y;
return result;
};
Let's write a test!
var add = function(x, y){
var result = x + y;
return result;
};
test("test that add function doesn't return null", function() {
var result = add(2, 3);
notEqual(result, null, "We expect the value to be non null");
});
Test that is performing an assertion
4 Lot's of code just to test a single value
4 Test will rarely, if ever, fail
4 Quality vs. quantity of tests
Simple function to add two numbers
var add = function(x, y){
var result = x + y;
return result;
};
Simple function to add two numbers
var add = function(x, y){
var result = x + y;
console.assert(result, "X should not be null!");
return result;
};
Assertions in production code?
Simple function to add two numbers
var add = function(x, y){
var result = x + y;
assert(result, "An error has occured with this page. Please refresh.");
return result;
};
Testing logic using unit
tests
QUnit
4 http://qunitjs.com
4 JavaScript Unit Test
Framework
4 Used to test jQuery, jQuery
UI, and jQuery Mobile
QUnit
test("a basic test example", function() {
var value = "hello";
equal( value, "hello", "We expect value to be hello" );
});
Demo - QUnit
Testing what the user
actually sees...
Demo - What happens if
the UI breaks?
Selenium
4 http://seleniumhq.org
4 Web Application Testing
Platform
4 Open source (Apache 2.0)
released by ThoughtWorks in
2004
Selenium
4 Selenium IDE - Basic test
recorder, implemented as a
Firefox extension
4 Selenium WebDriver -
Formerly Selenium RC, remote
control for browser
4 Selenium Grid - Instantiate
browsers on remote machines
Demo - Selenium IDE
Demo - Selenium Builder
Selenium IDE/Builder
4 Quick/easy to create tests
4 However, no test inheritence
4 Output is HTML or JSON, not script
4 Difficult to inject any complex logic
4 Has to be manually run through Firefox
Selenium WebDriver
WebDriver Specification
4 W3C Working Draft
4 Platform and language neutral interface to allow
control of a Web browser
4 Wire level protocol using HTTP and JSON
4 https://dvcs.w3.org/hg/webdriver/raw-file/default/
webdriver-spec.html
Selenium WebDriver
4 Implementation of WebDriver
protocol
4 Runs on host, listens on ports
4 Invokes browser (as
configured)
4 Drives browser to test
application
What do we use to write
those tests?
Jasmine
4 http://pivotal.github.io/
jasmine/
4 BDD Framework for writing
JavaScript tests
4 Clean syntax
4 Support for mocks (spies)
Jasmine
describe("a basic test example", function() {
it(“tests that true is always the truth”, function() {
expect(true).toBe(true);
});
});
Protractor
4 https://github.com/angular/
protractor
4 Testing framework for
AngularJS, but can be used for
any application
4 Supports Jasmine tests by
default (Mocha coming soon)
4 Scripts to support easy install
of Selenium
Protractor
4 Also installs Selenium dependencies
npm install –g protractor
webdriver-manager update
webdriver-manager start
Demo - WebDriver,
Protractor, Jasmine
What did we see?
4 Tests written using Jasmine
4 Being invoked using
Protractor
4 Sent to Selenium server using
WebDriver protocol
4 Selenium invoking Chrome to
run tests
Demo - Using WebBuilder
to create Protractor tests
Demo - Can I do unit
testing with WebDriver
also?
Do I have to launch a
browser?
PhantomJS
4 http://phantomjs.org
4 Headless (Qt-based) WebKit
with JavaScript API
4 Ability to act as a browser
without actually having a GUI
4 Ideal for running in hosted
instances (e.g. docker)
PhantomJS
page.open(‘http://localhost:8088’, function(status) {
page.evaluate(function() {
/* test elements on the page */
});
});
Demo - PhantomJS
Nice - but yet another
framework?
Nice - but yet
another framework?
4 PhantomJS can be invoked by
Selenium as a virtual browser
4 (Configure Selenium to invoke
PhantomJS CLI instead of
Chrome executable)
Demo - Invoking
PhantomJS using Selenium
WebDriver
Simplifying the
Stack
4 Selenium acting as a proxy
4 PhantomJS supports
WebDriver wire-level protocol
Simplifying the
Stack
4 Selenium acting as a proxy
4 PhantomJS supports
WebDriver wire-level protocol
phantomjs --webdriver=4444
Demo - Using GhostDriver
Wrapping Up
Wrapping Up
4 Many options for creating powerful Web tests using
JavaScript
4 Abundance of frameworks, many of which are
modular
4 Unit and end-to-end tests in both browser-based
and headless mode
Thank You!
Q&A
4 Simon Guest, Distinguished Engineer, Neudesic LLC
4 simonguest.com (@simonguest)
4 http://github.com/simonguest/gids
4 http://slideshare.net/simonguest
-- http://www.amazon.com/File-
New-Presentation-Developers-
Professionals/dp/0615910459

More Related Content

What's hot (20)

PPTX
Automated Testing using JavaScript
Simon Guest
 
PPTX
Protractor survival guide
László Andrási
 
PPTX
Better End-to-End Testing with Page Objects Model using Protractor
Kasun Kodagoda
 
KEY
JavaScript Testing VIA Selenium
Adam Christian
 
PDF
Join the darkside: Selenium testing with Nightwatch.js
Seth McLaughlin
 
PPTX
Protractor
kapilsethi9
 
PDF
Introduction to Protractor
Florian Fesseler
 
PDF
Front-End Testing: Demystified
Seth McLaughlin
 
PPTX
Angular UI Testing with Protractor
Andrew Eisenberg
 
PPTX
Automated Smoke Tests with Protractor
🌱 Dale Spoonemore
 
PPTX
An Introduction to AngularJS End to End Testing using Protractor
Cubet Techno Labs
 
PPTX
Selenium for Jobseekers
Seshu Madhav Chaturvedula
 
PPTX
Browser Automated Testing Frameworks - Nightwatch.js
Luís Bastião Silva
 
DOCX
Protractor end-to-end testing framework for angular js
codeandyou forums
 
PDF
Unit-testing and E2E testing in JS
Michael Haberman
 
PDF
Practical Tips & Tricks for Selenium Test Automation
Sauce Labs
 
PDF
Nightwatch at Tilt
Dave King
 
PPTX
Get Started With Selenium 3 and Selenium 3 Grid
Daniel Herken
 
PDF
Web automation using selenium.ppt
Ana Sarbescu
 
PPT
Introduction to Selenium
rohitnayak
 
Automated Testing using JavaScript
Simon Guest
 
Protractor survival guide
László Andrási
 
Better End-to-End Testing with Page Objects Model using Protractor
Kasun Kodagoda
 
JavaScript Testing VIA Selenium
Adam Christian
 
Join the darkside: Selenium testing with Nightwatch.js
Seth McLaughlin
 
Protractor
kapilsethi9
 
Introduction to Protractor
Florian Fesseler
 
Front-End Testing: Demystified
Seth McLaughlin
 
Angular UI Testing with Protractor
Andrew Eisenberg
 
Automated Smoke Tests with Protractor
🌱 Dale Spoonemore
 
An Introduction to AngularJS End to End Testing using Protractor
Cubet Techno Labs
 
Selenium for Jobseekers
Seshu Madhav Chaturvedula
 
Browser Automated Testing Frameworks - Nightwatch.js
Luís Bastião Silva
 
Protractor end-to-end testing framework for angular js
codeandyou forums
 
Unit-testing and E2E testing in JS
Michael Haberman
 
Practical Tips & Tricks for Selenium Test Automation
Sauce Labs
 
Nightwatch at Tilt
Dave King
 
Get Started With Selenium 3 and Selenium 3 Grid
Daniel Herken
 
Web automation using selenium.ppt
Ana Sarbescu
 
Introduction to Selenium
rohitnayak
 

Viewers also liked (16)

PPTX
Automated Testing with Cucumber, PhantomJS and Selenium
Dev9Com
 
PDF
Protractor: Tips & Tricks
Sergey Bolshchikov
 
PDF
Testing at Yammer with FooUnit, Jellyfish, and Sauce Labs
Sauce Labs
 
PPT
Test Automation Framework Designs
Sauce Labs
 
PPTX
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
PPT
Automation testing strategy, approach & planning
SivaprasanthRentala1975
 
PDF
Web Services Automated Testing via SoapUI Tool
Sperasoft
 
PPTX
Automatyczne testy end-to-end aplikacji JavaScript.
Future Processing
 
PPTX
Presentation_Protractor
Umesh Randhe
 
PDF
Workshop - E2e tests with protractor
Walmyr Lima e Silva Filho
 
PPTX
Continuous Delivery With Selenium Grid And Docker
Barbara Gonzalez
 
PDF
Introduction to Protractor
Jie-Wei Wu
 
PPT
Selenium
Sun Technlogies
 
PDF
Node.js and Selenium Webdriver, a journey from the Java side
Mek Srunyu Stittri
 
PPT
Web Test Automation with Selenium
vivek_prahlad
 
PPT
Selenium ppt
Pavan Kumar
 
Automated Testing with Cucumber, PhantomJS and Selenium
Dev9Com
 
Protractor: Tips & Tricks
Sergey Bolshchikov
 
Testing at Yammer with FooUnit, Jellyfish, and Sauce Labs
Sauce Labs
 
Test Automation Framework Designs
Sauce Labs
 
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
Automation testing strategy, approach & planning
SivaprasanthRentala1975
 
Web Services Automated Testing via SoapUI Tool
Sperasoft
 
Automatyczne testy end-to-end aplikacji JavaScript.
Future Processing
 
Presentation_Protractor
Umesh Randhe
 
Workshop - E2e tests with protractor
Walmyr Lima e Silva Filho
 
Continuous Delivery With Selenium Grid And Docker
Barbara Gonzalez
 
Introduction to Protractor
Jie-Wei Wu
 
Selenium
Sun Technlogies
 
Node.js and Selenium Webdriver, a journey from the Java side
Mek Srunyu Stittri
 
Web Test Automation with Selenium
vivek_prahlad
 
Selenium ppt
Pavan Kumar
 
Ad

Similar to Automated Web Testing using JavaScript (20)

PDF
Quick tour to front end unit testing using jasmine
Gil Fink
 
PPTX
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
hemasubbu08
 
PPTX
Java script unit testing
Mats Bryntse
 
PPTX
3 Ways to test your ColdFusion API - 2017 Adobe CF Summit
Ortus Solutions, Corp
 
PDF
Quick tour to front end unit testing using jasmine
Gil Fink
 
PDF
JavaScript TDD with Jasmine and Karma
Christopher Bartling
 
PDF
3 WAYS TO TEST YOUR COLDFUSION API
Gavin Pickin
 
PDF
3 WAYS TO TEST YOUR COLDFUSION API -
Ortus Solutions, Corp
 
PPT
Jasmine presentation Selenium Camp 2013
dimakovalenko
 
PPT
Selenium
husnara mohammad
 
PPTX
Test automation proposal
Mihai-Cristian Fratila
 
PPT
Selenium testing - Handle Elements in WebDriver
Vibrant Technologies & Computers
 
PDF
Frontend automation and stability
Máté Nádasdi
 
PPTX
Automated Testing on Web Applications
Samuel Borg
 
PPT
Selenium
Purna Chandar
 
PPT
Test Automation Framework Designs
Test Automaton
 
PDF
How to write Testable Javascript
ColdFusionConference
 
PDF
How do I write Testable Javascript - Presented at dev.Objective() June 16, 2016
Gavin Pickin
 
PDF
Web Application Testing with Selenium
Sargis Sargsyan
 
PDF
Intelligent Testing Tool: Selenium Web Driver
IRJET Journal
 
Quick tour to front end unit testing using jasmine
Gil Fink
 
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
hemasubbu08
 
Java script unit testing
Mats Bryntse
 
3 Ways to test your ColdFusion API - 2017 Adobe CF Summit
Ortus Solutions, Corp
 
Quick tour to front end unit testing using jasmine
Gil Fink
 
JavaScript TDD with Jasmine and Karma
Christopher Bartling
 
3 WAYS TO TEST YOUR COLDFUSION API
Gavin Pickin
 
3 WAYS TO TEST YOUR COLDFUSION API -
Ortus Solutions, Corp
 
Jasmine presentation Selenium Camp 2013
dimakovalenko
 
Test automation proposal
Mihai-Cristian Fratila
 
Selenium testing - Handle Elements in WebDriver
Vibrant Technologies & Computers
 
Frontend automation and stability
Máté Nádasdi
 
Automated Testing on Web Applications
Samuel Borg
 
Selenium
Purna Chandar
 
Test Automation Framework Designs
Test Automaton
 
How to write Testable Javascript
ColdFusionConference
 
How do I write Testable Javascript - Presented at dev.Objective() June 16, 2016
Gavin Pickin
 
Web Application Testing with Selenium
Sargis Sargsyan
 
Intelligent Testing Tool: Selenium Web Driver
IRJET Journal
 
Ad

More from Simon Guest (20)

PDF
10 Life Hacks for Better Productivity
Simon Guest
 
PDF
Building a Great Engineering Culture
Simon Guest
 
PDF
Interviewing Techniques
Simon Guest
 
PDF
Presentation Anti-Patterns
Simon Guest
 
PDF
10 Life Hacks for Better Productivity
Simon Guest
 
PDF
Advanced Tips & Tricks for using Angular JS
Simon Guest
 
PDF
Indoor location in mobile applications using iBeacons
Simon Guest
 
PPTX
Creating Context-Aware Applications
Simon Guest
 
PDF
Enterprise Social Networking - Myth or Magic?
Simon Guest
 
PPTX
Objective View of MEAPs
Simon Guest
 
PPTX
Top Ten Tips for HTML5/Mobile Web Development
Simon Guest
 
PPTX
Windows Azure Toolkit for iOS
Simon Guest
 
PPTX
Developing Enterprise-Grade Mobile Applications
Simon Guest
 
PPTX
My customers are using iPhone/Android, but I'm a Microsoft Guy.
Simon Guest
 
PPTX
Developing iPhone and iPad apps that leverage Windows Azure
Simon Guest
 
PPTX
iPhone and iPad Security
Simon Guest
 
PPTX
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Simon Guest
 
PPTX
Future of Mobility
Simon Guest
 
PDF
Patterns for Cloud Computing
Simon Guest
 
PDF
ReMix Keynote (Vienna, Austria)
Simon Guest
 
10 Life Hacks for Better Productivity
Simon Guest
 
Building a Great Engineering Culture
Simon Guest
 
Interviewing Techniques
Simon Guest
 
Presentation Anti-Patterns
Simon Guest
 
10 Life Hacks for Better Productivity
Simon Guest
 
Advanced Tips & Tricks for using Angular JS
Simon Guest
 
Indoor location in mobile applications using iBeacons
Simon Guest
 
Creating Context-Aware Applications
Simon Guest
 
Enterprise Social Networking - Myth or Magic?
Simon Guest
 
Objective View of MEAPs
Simon Guest
 
Top Ten Tips for HTML5/Mobile Web Development
Simon Guest
 
Windows Azure Toolkit for iOS
Simon Guest
 
Developing Enterprise-Grade Mobile Applications
Simon Guest
 
My customers are using iPhone/Android, but I'm a Microsoft Guy.
Simon Guest
 
Developing iPhone and iPad apps that leverage Windows Azure
Simon Guest
 
iPhone and iPad Security
Simon Guest
 
Building solutions on the Microsoft platform that target iPhone, iPad, and An...
Simon Guest
 
Future of Mobility
Simon Guest
 
Patterns for Cloud Computing
Simon Guest
 
ReMix Keynote (Vienna, Austria)
Simon Guest
 

Recently uploaded (20)

PDF
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
PDF
June 2025 - Top 10 Read Articles in Network Security and Its Applications
IJNSA Journal
 
PDF
How to Buy Verified CashApp Accounts IN 2025
Buy Verified CashApp Accounts
 
PDF
bs-en-12390-3 testing hardened concrete.pdf
ADVANCEDCONSTRUCTION
 
PDF
Designing for Tomorrow – Architecture’s Role in the Sustainability Movement
BIM Services
 
PDF
Decision support system in machine learning models for a face recognition-bas...
TELKOMNIKA JOURNAL
 
PPTX
darshai cross section and river section analysis
muk7971
 
PDF
Clustering Algorithms - Kmeans,Min ALgorithm
Sharmila Chidaravalli
 
PDF
FSE-Journal-First-Automated code editing with search-generate-modify.pdf
cl144
 
PPTX
Computer network Computer network Computer network Computer network
Shrikant317689
 
PPTX
Precooling and Refrigerated storage.pptx
ThongamSunita
 
PPTX
CM Function of the heart pp.pptxafsasdfddsf
drmaneharshalid
 
PPTX
Engineering Quiz ShowEngineering Quiz Show
CalvinLabial
 
PDF
lesson4-occupationalsafetyandhealthohsstandards-240812020130-1a7246d0.pdf
arvingallosa3
 
PPT
FINAL plumbing code for board exam passer
MattKristopherDiaz
 
PDF
Module - 5 Machine Learning-22ISE62.pdf
Dr. Shivashankar
 
PDF
William Stallings - Foundations of Modern Networking_ SDN, NFV, QoE, IoT, and...
lavanya896395
 
PDF
PROGRAMMING REQUESTS/RESPONSES WITH GREATFREE IN THE CLOUD ENVIRONMENT
samueljackson3773
 
PDF
June 2025 Top 10 Sites -Electrical and Electronics Engineering: An Internatio...
elelijjournal653
 
PDF
CLIP_Internals_and_Architecture.pdf sdvsdv sdv
JoseLuisCahuanaRamos3
 
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
June 2025 - Top 10 Read Articles in Network Security and Its Applications
IJNSA Journal
 
How to Buy Verified CashApp Accounts IN 2025
Buy Verified CashApp Accounts
 
bs-en-12390-3 testing hardened concrete.pdf
ADVANCEDCONSTRUCTION
 
Designing for Tomorrow – Architecture’s Role in the Sustainability Movement
BIM Services
 
Decision support system in machine learning models for a face recognition-bas...
TELKOMNIKA JOURNAL
 
darshai cross section and river section analysis
muk7971
 
Clustering Algorithms - Kmeans,Min ALgorithm
Sharmila Chidaravalli
 
FSE-Journal-First-Automated code editing with search-generate-modify.pdf
cl144
 
Computer network Computer network Computer network Computer network
Shrikant317689
 
Precooling and Refrigerated storage.pptx
ThongamSunita
 
CM Function of the heart pp.pptxafsasdfddsf
drmaneharshalid
 
Engineering Quiz ShowEngineering Quiz Show
CalvinLabial
 
lesson4-occupationalsafetyandhealthohsstandards-240812020130-1a7246d0.pdf
arvingallosa3
 
FINAL plumbing code for board exam passer
MattKristopherDiaz
 
Module - 5 Machine Learning-22ISE62.pdf
Dr. Shivashankar
 
William Stallings - Foundations of Modern Networking_ SDN, NFV, QoE, IoT, and...
lavanya896395
 
PROGRAMMING REQUESTS/RESPONSES WITH GREATFREE IN THE CLOUD ENVIRONMENT
samueljackson3773
 
June 2025 Top 10 Sites -Electrical and Electronics Engineering: An Internatio...
elelijjournal653
 
CLIP_Internals_and_Architecture.pdf sdvsdv sdv
JoseLuisCahuanaRamos3
 

Automated Web Testing using JavaScript