SlideShare a Scribd company logo
Testing Code.org's Interactive 
Computer Science Curriculum 
Brian Jordan, software engineer at Code.org 
brian@code.org 
@bcjordan 
bcjordan.com
Code.org
non-profit
expanding 
participation in CS
Hour of Code
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
10 million
43 million
now?
district partnerships, 
professional development
700 teachers trained 
10 school districts
policy changes
K-12 CS Curriculum
Testing Challenges
what are we up 
against? 
demo time!
Testing Code.org's Interactive CS Curriculum
testing challenges
multiple browsers
multiple browsers
iOS / Android
IE 9
localization
33 languages
left-to-right
right-to-left
browser features
<svg>, <canvas>
Javascript
conditional logic to 
support all browsers
Testing Code.org's Interactive CS Curriculum
tough but important
now let's test it!
Unit Tests!
dashboard (Ruby on Rails) 
blockly (JS, svg, canvas, grunt) 
Unit Tests? 
blockly-core (JS, svg, Closure Tools)
Dashboard 
Blockly Apps Blockly Core
Rails testing
ActiveSupport::TestCase
Factory Girl
Factory Girl
SimpleCov
Blockly testing
solution tests 
grunt-mocha-test 
Chai for assertions 
node-canvas for drawing
solution tests
solution tests
solution 
tests
UI tests
challenge: 
multiple browsers
solution: 
BrowserStack
challenge: 
interaction, 
drag-and-drop
solution: 
jQuery Simulate 
$(selector).drag…
Cucumber —> 
Selenium
local tests with 
chromedriver 
@browser = Selenium::WebDriver.for :chrome, :url=>"http://127.0.0.1:9515"
remote tests with 
BrowserStack 
@browser = Selenium::WebDriver.for 
:remote, 
url => "http://#{browserstack_username}:#{browserstack_authkey} 
@hub.browserstack.com/wd/hub"
Cucumber is uncomfortable 
to start with
DSL should be high-level 
And I drag block "2" to block "4"
Build a library of steps
Visit the URL 
Given I am on "http://learn.code.org/s/1/level/24"
Visit the URL 
Given /^I am on "([^"]*)"$/ do |url| 
url = replace_hostname(url) 
@browser.navigate.to "#{url}" 
end
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Annotations 
@no_mobile 
@no_ie 
@skip 
@db_access
On BrowserStack
Testing Code.org's Interactive CS Curriculum
Demo: Speed Run
Monitoring
integration with CI
HipChat all the things
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
completion rates
per-browser 
completion rates
Travis CI <> GitHub
Takeaways
Build up 
Library 
of Tests
Culture of 
Testing
Saves time in 
test writing
Saves time in 
development
Thanks! 
Brian Jordan, software engineer at Code.org 
brian@code.org 
@bcjordan 
bcjordan.com 
http://code.org/help 
http://github.com/code-dot-org

More Related Content

PDF
Selenium Best Practices with Jason Huggins
PDF
How to Use Selenium, Successfully
PDF
APIs: A Better Alternative to Page Objects
PPTX
Automated Testing with Cucumber, PhantomJS and Selenium
PPTX
Selenium for Jobseekers
PDF
Practical Tips & Tricks for Selenium Test Automation
PPTX
Automated Testing using JavaScript
PPTX
Making Watir and Cucumber an efficient tool for Web UI Automation
Selenium Best Practices with Jason Huggins
How to Use Selenium, Successfully
APIs: A Better Alternative to Page Objects
Automated Testing with Cucumber, PhantomJS and Selenium
Selenium for Jobseekers
Practical Tips & Tricks for Selenium Test Automation
Automated Testing using JavaScript
Making Watir and Cucumber an efficient tool for Web UI Automation

What's hot (20)

PPTX
Better End-to-End Testing with Page Objects Model using Protractor
PPTX
Controlling the browser through python and selenium
PDF
Selenium Tips & Tricks
PDF
Introduction to Protractor
PPTX
An Introduction to AngularJS End to End Testing using Protractor
PDF
Web automation using selenium.ppt
PDF
Capybara testing
PPTX
Protractor overview
PDF
Selenium 4 with Simon Stewart [Webinar]
PDF
AngularJS and Protractor
PDF
Selenium 2 - PyCon 2011
PDF
Carmen Popoviciu - Protractor styleguide | Codemotion Milan 2015
PDF
Automated Web Testing using JavaScript
PPTX
Protractor for angularJS
PDF
Behavior Driven Development and Automation Testing Using Cucumber
PPTX
Protractor Tutorial Quality in Agile 2015
PPTX
Introduction to cypress in Angular (Chinese)
PPT
Selenium Java for Beginners by Sujit Pathak
PPTX
Selenium
PPTX
Automation using Javascript
Better End-to-End Testing with Page Objects Model using Protractor
Controlling the browser through python and selenium
Selenium Tips & Tricks
Introduction to Protractor
An Introduction to AngularJS End to End Testing using Protractor
Web automation using selenium.ppt
Capybara testing
Protractor overview
Selenium 4 with Simon Stewart [Webinar]
AngularJS and Protractor
Selenium 2 - PyCon 2011
Carmen Popoviciu - Protractor styleguide | Codemotion Milan 2015
Automated Web Testing using JavaScript
Protractor for angularJS
Behavior Driven Development and Automation Testing Using Cucumber
Protractor Tutorial Quality in Agile 2015
Introduction to cypress in Angular (Chinese)
Selenium Java for Beginners by Sujit Pathak
Selenium
Automation using Javascript
Ad

Viewers also liked (14)

PDF
Automation Best Practices
POTX
Simplify CI with the Updated Jenkins Plugin for Sauce Labs
PDF
Easy Continuous Deployment You Can Trust (Webinar)
PPTX
Best Practices in Mobile CI (webinar)
PPTX
Getting Started with Mobile Test Automation & Appium
PDF
Transitioning from Traditional to Modern QA
PDF
Design Patterns for Scalable Test Automation With Selenium & WebdriverIO
PPTX
Moving From a Selenium Grid to the Cloud - A Real Life Story
PPTX
Continuous Testing in the Cloud
PPTX
Sauce Labs for Visual Studio Team Services & TFS
PDF
How To Use Selenium Successfully (Java Edition)
PPTX
Beyond the Release: CI That Transforms Organizations
PDF
10 things you didnt know about appium + whats new in appium 1.5
PDF
10 Benefits of Automated Testing
Automation Best Practices
Simplify CI with the Updated Jenkins Plugin for Sauce Labs
Easy Continuous Deployment You Can Trust (Webinar)
Best Practices in Mobile CI (webinar)
Getting Started with Mobile Test Automation & Appium
Transitioning from Traditional to Modern QA
Design Patterns for Scalable Test Automation With Selenium & WebdriverIO
Moving From a Selenium Grid to the Cloud - A Real Life Story
Continuous Testing in the Cloud
Sauce Labs for Visual Studio Team Services & TFS
How To Use Selenium Successfully (Java Edition)
Beyond the Release: CI That Transforms Organizations
10 things you didnt know about appium + whats new in appium 1.5
10 Benefits of Automated Testing
Ad

Similar to Testing Code.org's Interactive CS Curriculum (20)

PDF
Web Development for UX Designers
PDF
gDayX 2013 - Advanced AngularJS - Nicolas Embleton
PDF
Front End Workflow
PDF
gDayX - Advanced angularjs
PDF
Continuous Testing Meets the Classroom at Code.org
PDF
From Backbone to Ember and Back(bone) Again
PPTX
Introduction à AngularJS
PDF
Connecting the Worlds of Java and Ruby with JRuby
PDF
The curious Life of JavaScript - Talk at SI-SE 2015
PDF
Top 45 jQuery Interview Questions and Answers | Edureka
PDF
[Webinar] Continuous Testing Done Right: Test Automation at the World's Leadi...
PPTX
Introduction to Client Side Dev in SharePoint Workshop
PDF
III - Better angularjs
PDF
Play framework
PDF
Get Ahead with HTML5 on Moible
PDF
Measuring Web Performance - HighEdWeb Edition
PDF
Why Use Rails by Dr Nic
PDF
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
PDF
Microservices and Friends
PDF
vidhi talk.pdf
Web Development for UX Designers
gDayX 2013 - Advanced AngularJS - Nicolas Embleton
Front End Workflow
gDayX - Advanced angularjs
Continuous Testing Meets the Classroom at Code.org
From Backbone to Ember and Back(bone) Again
Introduction à AngularJS
Connecting the Worlds of Java and Ruby with JRuby
The curious Life of JavaScript - Talk at SI-SE 2015
Top 45 jQuery Interview Questions and Answers | Edureka
[Webinar] Continuous Testing Done Right: Test Automation at the World's Leadi...
Introduction to Client Side Dev in SharePoint Workshop
III - Better angularjs
Play framework
Get Ahead with HTML5 on Moible
Measuring Web Performance - HighEdWeb Edition
Why Use Rails by Dr Nic
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Microservices and Friends
vidhi talk.pdf

Recently uploaded (20)

PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
L1 - Introduction to python Backend.pptx
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
System and Network Administraation Chapter 3
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Digital Strategies for Manufacturing Companies
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Online Work Permit System for Fast Permit Processing
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
top salesforce developer skills in 2025.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
How to Migrate SBCGlobal Email to Yahoo Easily
L1 - Introduction to python Backend.pptx
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
How Creative Agencies Leverage Project Management Software.pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
ManageIQ - Sprint 268 Review - Slide Deck
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
System and Network Administraation Chapter 3
Which alternative to Crystal Reports is best for small or large businesses.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Odoo Companies in India – Driving Business Transformation.pdf
Digital Strategies for Manufacturing Companies
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
2025 Textile ERP Trends: SAP, Odoo & Oracle
Design an Analysis of Algorithms I-SECS-1021-03
Online Work Permit System for Fast Permit Processing
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
top salesforce developer skills in 2025.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41

Testing Code.org's Interactive CS Curriculum