SlideShare a Scribd company logo
1 of 28
Download to read offline
PageObject
testing automation pattern
Pavel Mitin . 2014
Real life example
When /^user clicks on Action>>"(.*)" in the book list$/ do |action_name|
book_name_column = column_index "//table[@id='list-table']", 'Name'
@book = first(:xpath,"//table/tbody/tr/td[#{book_name_column}]//a").text
action_column = column_index "//table[@id='list-table']", 'Action'
first(:xpath, "//table/tbody/tr/td[#{action_column}]//a[contains(.,'Action')]").click
first(:xpath, "//table/tbody/tr/td[#{action_column}]//ul/li/a[contains(.,'#{action_name}')]").click
end
Problem
When /^user clicks on Action>>"(.*)" in the book list$/ do |action_name|
book_name_column = column_index "//table[@id='list-table']", 'Name'
@book = first(:xpath,"//table/tbody/tr/td[#{book_name_column}]//a").text
action_column = column_index "//table[@id='list-table']", 'Action'
first(:xpath, "//table/tbody/tr/td[#{action_column}]//a[contains(.,'Action')]").click
first(:xpath, "//table/tbody/tr/td[#{action_column}]//ul/li/a[contains(.,'#{action_name}')]").click
end
WHAT vs HOW
Be more OO
All problems in computer science can be
solved by another level of indirection
Butler Lampson/David Wheeler
PageObject pattern
* HOW becomes the internal implementation details
* WHAT manifests itself in public interface
Code example
book_list = BookListPanel.new
...
book_list.filter_by_author author
...
book_list.paginate 2
Code example
book_list = BookListPanel.new
...
book_list.filter_by_author author
...
book_list.paginate 2
Object-oriented
wrappers
around UI pieces
OLD
NEW
PageObject vs PanelObject
There's an argument here that the name "page object" is
misleading because it makes you think you should have just one
page object per page. Something like "panel object" would be
better - but the term "page object" is what's become accepted.
Another illustration of why naming is one of the TwoHardThings.
Martin Fowler
PageObject vs PanelObject
Options:
1) Single object per page
2) Tree of objects (page object + panel objects)
3) Independent panel object(s)
PageObject vs PanelObject
Options:
1) Single object per page
2) Tree of objects (page object -- root)
3) Independent panel object(s)
Good object
PageObject vs PanelObject
Options:
1) Single object per page
2) Tree of objects (page object -- root)
3) Independent panel object(s) Still over-complicated
Can reveal hierarchy of
complex UI
PageObject vs PanelObject
Options:
1) Single object per page
2) Tree of objects (page object -- root)
3) Independent panel object(s)
Simple and flexible
More examples
# https://github.com/ngauthier/domino
class Dom::Post < Domino
selector '#posts .post'
attribute :title
attribute :body, '.post-body'
attribute :posted_at { |text| Date.parse text }
end
More examples
# https://github.com/ngauthier/domino
assert_equal 4, Dom::Post.count
refute_nil Dom::Post.find_by_title('First Post')
More examples
# https://github.com/ngauthier/domino
def delete
within(id) { click_button 'Delete' }
end
…
refute_nil Dom::Post.find_by_title('First Post')
Dom::Post.find_by_title('First Post').delete
Asserts
Can PageObject class contain asserts?
Asserts
# External assert
assert book_list.empty?
# vs
# Internal assert
book_list.assert_emtpy
Asserts
# Internal approach works well with
# complex asserts
book_list.assert_searchable
# 1. Put a term in the search input
# 2. Hit “Search”
# 3. Check each item contains the term
Asserts
# Mixins / traits etc.
book_list = BookListPanel.new
book_list.extend ListAsserts
...
book_list.assert_searchable
Chain of pages
# Don't try this at home ;)
books = book_form.submit
assert 1, books.size
book = books.first.show_details
WEB only?
No
No silver bullet
You have to maintain the layer of abstraction.
No silver bullet
Don’t use if your interface is not uniform.
Sweet spot
DRY it
# production code (UI widget in view layer)
books = Widget::BookList.new current_user
books.render
# test code (UI widget + page object)
books = Widget::BookList.new current_user
books_panel = BookListPanel.new books
Thanks
@map_and_filter
http://novembermeeting.blogspot.com

More Related Content

What's hot

Django class based views
Django class based viewsDjango class based views
Django class based views
justinvoss
 
Asp.net create delete directory folder in c# vb.net
Asp.net   create delete directory folder in c# vb.netAsp.net   create delete directory folder in c# vb.net
Asp.net create delete directory folder in c# vb.net
relekarsushant
 

What's hot (20)

jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
 
jQuery Selectors
jQuery SelectorsjQuery Selectors
jQuery Selectors
 
Web2py
Web2pyWeb2py
Web2py
 
Django class based views
Django class based viewsDjango class based views
Django class based views
 
Functional es6
Functional es6Functional es6
Functional es6
 
jQuery Namespace Pattern
jQuery Namespace PatternjQuery Namespace Pattern
jQuery Namespace Pattern
 
Jquery
JqueryJquery
Jquery
 
J query lecture 1
J query lecture 1J query lecture 1
J query lecture 1
 
Advanced GORM - Performance, Customization and Monitoring
Advanced GORM - Performance, Customization and MonitoringAdvanced GORM - Performance, Customization and Monitoring
Advanced GORM - Performance, Customization and Monitoring
 
Jquery plugin development
Jquery plugin developmentJquery plugin development
Jquery plugin development
 
Jquery Fundamentals
Jquery FundamentalsJquery Fundamentals
Jquery Fundamentals
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
 
jQuery
jQueryjQuery
jQuery
 
Using web2py's DAL in other projects or frameworks
Using web2py's DAL in other projects or frameworksUsing web2py's DAL in other projects or frameworks
Using web2py's DAL in other projects or frameworks
 
supporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tablesupporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered table
 
Mongo db
Mongo dbMongo db
Mongo db
 
ORM in Django
ORM in DjangoORM in Django
ORM in Django
 
JQuery introduction
JQuery introductionJQuery introduction
JQuery introduction
 
Asp.net create delete directory folder in c# vb.net
Asp.net   create delete directory folder in c# vb.netAsp.net   create delete directory folder in c# vb.net
Asp.net create delete directory folder in c# vb.net
 
jQuery. Write less. Do More.
jQuery. Write less. Do More.jQuery. Write less. Do More.
jQuery. Write less. Do More.
 

Similar to PageObject

Flutter DartI have these files in picture I wrote most the codes b.pdf
Flutter DartI have these files in picture I wrote most the codes b.pdfFlutter DartI have these files in picture I wrote most the codes b.pdf
Flutter DartI have these files in picture I wrote most the codes b.pdf
info431285
 
Flutter Dart I have these files in picture I wrote most the codes .pdf
Flutter Dart I have these files in picture I wrote most the codes .pdfFlutter Dart I have these files in picture I wrote most the codes .pdf
Flutter Dart I have these files in picture I wrote most the codes .pdf
info431285
 
This is a java lab assignment. I have added the first part java re.pdf
This is a java lab assignment. I have added the first part java re.pdfThis is a java lab assignment. I have added the first part java re.pdf
This is a java lab assignment. I have added the first part java re.pdf
feetshoemart
 
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Venturing Into The Wild: A .NET Developer's Experience As A Ruby DeveloperVenturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Jon Kruger
 
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2KZepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Thomas Fuchs
 

Similar to PageObject (20)

Flutter DartI have these files in picture I wrote most the codes b.pdf
Flutter DartI have these files in picture I wrote most the codes b.pdfFlutter DartI have these files in picture I wrote most the codes b.pdf
Flutter DartI have these files in picture I wrote most the codes b.pdf
 
Flutter Dart I have these files in picture I wrote most the codes .pdf
Flutter Dart I have these files in picture I wrote most the codes .pdfFlutter Dart I have these files in picture I wrote most the codes .pdf
Flutter Dart I have these files in picture I wrote most the codes .pdf
 
Using Dojo
Using DojoUsing Dojo
Using Dojo
 
JavaScript
JavaScriptJavaScript
JavaScript
 
Advanced Django
Advanced DjangoAdvanced Django
Advanced Django
 
RubyBarCamp “Полезные gems и plugins”
RubyBarCamp “Полезные gems и plugins”RubyBarCamp “Полезные gems и plugins”
RubyBarCamp “Полезные gems и plugins”
 
Unit3.pptx
Unit3.pptxUnit3.pptx
Unit3.pptx
 
Java and XML
Java and XMLJava and XML
Java and XML
 
DOM and Events
DOM and EventsDOM and Events
DOM and Events
 
This is a java lab assignment. I have added the first part java re.pdf
This is a java lab assignment. I have added the first part java re.pdfThis is a java lab assignment. I have added the first part java re.pdf
This is a java lab assignment. I have added the first part java re.pdf
 
jQuery in the [Aol.] Enterprise
jQuery in the [Aol.] EnterprisejQuery in the [Aol.] Enterprise
jQuery in the [Aol.] Enterprise
 
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Venturing Into The Wild: A .NET Developer's Experience As A Ruby DeveloperVenturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
 
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2KZepto.js, a jQuery-compatible mobile JavaScript framework in 2K
Zepto.js, a jQuery-compatible mobile JavaScript framework in 2K
 
J Query Public
J Query PublicJ Query Public
J Query Public
 
Jquery 2
Jquery 2Jquery 2
Jquery 2
 
Creating a Facebook Clone - Part XXXI.pdf
Creating a Facebook Clone - Part XXXI.pdfCreating a Facebook Clone - Part XXXI.pdf
Creating a Facebook Clone - Part XXXI.pdf
 
A Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NETA Rich Web experience with jQuery, Ajax and .NET
A Rich Web experience with jQuery, Ajax and .NET
 
How te bring common UI patterns to ADF
How te bring common UI patterns to ADFHow te bring common UI patterns to ADF
How te bring common UI patterns to ADF
 
jQuery Anti-Patterns for Performance
jQuery Anti-Patterns for PerformancejQuery Anti-Patterns for Performance
jQuery Anti-Patterns for Performance
 
Xquery basics tutorial
Xquery basics  tutorialXquery basics  tutorial
Xquery basics tutorial
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 

Recently uploaded (20)

%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 

PageObject