SlideShare une entreprise Scribd logo
1  sur  46
www.ultimateqa.com 11
Nikolay Advolodkin
QA Automation Engineer
www.ultimateQA.com
@Nikolay_A00
A Single Pattern to Drastically Improve Your Test Automation
www.ultimateqa.com
I. Getting Started
www.ultimateqa.com
II. Why record and replay test automation is not effective
www.ultimateqa.com
Section II
44
Record a test Fix Test
Attempt to run
test
Understand
Disadvantages
How do we fix
problems with our
tests?
www.ultimateqa.com
III. Learning the pitfalls of Keyword Driven test automation
www.ultimateqa.com
Section III
66
Introduction to
Keyword Driven
Testing
Understanding
disadvantages
How do we fix
problems with our
Keyword tests?
www.ultimateqa.com
IV. Page Object Pattern
www.ultimateqa.com
Section IV
88
What are page
objects
Implementing
page objects to fix
our tests
Advantages and
disadvantages
Write more tests
using page objects
www.ultimateqa.com
V. Making Page Objects Even Better
www.ultimateqa.com
Section V
1010
Learn DRY Learn SRP Learn How To Deal
With Complex Web
Pages
Improve Tests Improve Tests Improve Tests
www.ultimateqa.com
What is one problem that most of us face with functional test
automation?
www.ultimateqa.com
20
5
4
Poll: How many tests can you run per day that will give the correct result with 95%
accuracy?
1212
2
3
2501 - 1000
1001 - 5000
5000+
101 - 500
51 - 100
0 - 50
www.ultimateqa.com 1313
Flaky tests (6)
Lack of
knowledge (6)
Framework (6)
Synchronization
(4)
Other, one off
issues
Poll: What is a problem that you have with test automation?
www.ultimateqa.com
Why is functional test automation so flaky?
www.ultimateqa.com 15
User Experience
Canvas
Touch Events
Angular JS
SVG
Drag & Drop
AJAX
http://www.evolutionoftheweb.com/
www.ultimateqa.com
How can Automation Engineers handle such an evolving world?
www.ultimateqa.com
“The only thing constant in software development is change.”
www.ultimateqa.com
Tools Used
1818
Version
Firefox
Selenium Builder
Visual Studio
Selenium
Webdriver
40.0
3.1.2
2015
2.53.1
NUnit
3.4.1.0
www.ultimateqa.com
Record and Replay: How many tests need to be updated due to a change
in AUT?
1919
How many tests
need to be changed?
Driver
Initialization
Url
Locators
User
names/password
s
Synchronization
issues
Change
Agents
All
All
All
All
All
www.ultimateqa.com 20
Methods Resilient
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Five
Reusable
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Four
Advantages of using Keyword Driven
Approach
www.ultimateqa.com 21
Too much in 1 file Flow changes break
all tests
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Five
Method for every
action
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Four
Disadvantages of using Keyword Driven
Approach
www.ultimateqa.com 2222
So what can I do
then????
Give me the
answer already
So unstable!!
ArghhhhIt’s Brittle bro!
www.ultimateqa.com
Page Object Pattern
www.ultimateqa.com 24
Page Object Pattern
Object – Page.cs
www.ultimateqa.com 25
Page Object Pattern
Use your code to interact with the application page
just like you would interact with it manually
Page.ClickStartHereButton()
Page.GoToVideoTutorials()
www.ultimateqa.com 26
Abstraction Logical Follows Good Design
Principles
Maintainable Readable Tests
Advantages of Page Object Pattern
www.ultimateqa.com 27
DRY – Don’t Repeat Yourself
www.ultimateqa.com
“Duplication is the primary enemy of a well-designed system”
Martin, Robert
www.ultimateqa.com 29
Increased barrier to
entry
Requires constant
improvement
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Five
Many different
options
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Four
Disadvantages of using Page Objects
www.ultimateqa.com
Creating Improved Page Objects
3030
Cement Understanding of Page
Objects
Improve the code
Tackle solutions to common
challenges
www.ultimateqa.com
Make Current Page Objects More DRY
1
www.ultimateqa.com
Make Current Page Objects Follow SRP
2
www.ultimateqa.com
Using complex pages to write simple Page Objects
3
www.ultimateqa.com
Recommended Pre-requisites
3434
Strong understanding
of Selenium
Webdriver API
https://goo.gl/71SOfX
Good understanding of
Object Oriented
Programming principles
https://goo.gl/YzQ1x4
www.ultimateqa.com
A class should have only one reason to change
SRP – SingleResponsibility Principle
www.ultimateqa.com
Benefits
3636
A change in an unrelated functionality will not break 2 functionalities
Changing pizza baking functionality is not going to break how the store
delivers the pizza
www.ultimateqa.com
How to create simple Page Objects from complex web pages?
3
www.ultimateqa.com 38
Small in code size Easier to read tests
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Five
Easier to manage
Lemon drops oat cake oat
cake sugar plum sweet
gingerbread chocolate
cake gingerbread.
Portfolio Four
Advantages of Simple Page Objects
www.ultimateqa.com
Required Resources
3939
http://www.ultimateqa.com/automation/
http://www.ultimateqa.com/complicated-page/
www.ultimateqa.com
Conclusions
4040
Automation
Success
Write your code to prepare
for inevitable change
GUI Automation is hard
A fantastic step towards test
stability
Start using Page Objects
Duplication is the enemy
Remove duplication
Classes should do one thing
only
Follow Single Responsibility Principle
Tests are more readable
Classes are smaller
Separate large page
objects
Start Here
www.ultimateqa.com
Resources
4141
• Code and Slide Deck - http://wp.me/P7absY-8j
• Martin, Robert C.. Clean Code: A Handbook of Agile Software Craftsmanship
(Kindle Locations 4076-4077). Pearson Education. Kindle Edition.
• Selenium Wiki on Page Objects
• Martin Fowler on Page Objects
• Dave Haeffner on Page Objects
www.ultimateqa.com
Help! Your stupid code doesn’t work Nikolay!
www.ultimateqa.com 43
Step 1: Debug Your Code
Remove code and start again
Ctrl + Y
Ctrl + Z
Restart
OpenQA.Selenium.WebDriverException:
Cannot find Firefox binary in PATH or
default install locations. Make sure Firefox
is installed. OS appears to be: Vista
Read Error Message in
IDE
Pull my code into your IDE
and use a Diff tool.
Use Notepad++ Compare
plugin
Compare to my Code
www.ultimateqa.com 44
Step 2: Check My Blog
Selenium errors
Search Blog
http://www.ultimateqa.com/common-
selenium-webdriver-errors-fix/
Go Here
www.ultimateqa.com 45
Step 3: Find Solutions Online
Error message + programming language
Google
www.ultimateqa.com 46
Step 4: Ask Good Questions
No need to be upset
It’s a common problem
Be Positive
http://www.ultimateqa.com/common-
selenium-webdriver-errors-fix/
Go Here
If you want help, make it easy
for the person to help you
Concise, Specific
Be thankful that someone took
time to answer your question
Give Thanks

Contenu connexe

Tendances

Getting started with Visual Testing using Applitools - @TPC, Feb2020
Getting started with Visual Testing using Applitools - @TPC, Feb2020Getting started with Visual Testing using Applitools - @TPC, Feb2020
Getting started with Visual Testing using Applitools - @TPC, Feb2020Anand Bagmar
 
[HCM Scrum Breakfast] How to improve product quality in Scrum Team
[HCM Scrum Breakfast] How to improve product quality in Scrum Team[HCM Scrum Breakfast] How to improve product quality in Scrum Team
[HCM Scrum Breakfast] How to improve product quality in Scrum TeamScrum Breakfast Vietnam
 
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...AmyC1018
 
Plugged-In Management Workshop
Plugged-In Management WorkshopPlugged-In Management Workshop
Plugged-In Management WorkshopTerri Griffith
 
Visual Validation - The Missing Tip of the Automation Pyramid
Visual Validation - The Missing Tip of the Automation PyramidVisual Validation - The Missing Tip of the Automation Pyramid
Visual Validation - The Missing Tip of the Automation PyramidAnand Bagmar
 
Record of Achievement - Microsoft Virtual Academy
Record of Achievement - Microsoft Virtual AcademyRecord of Achievement - Microsoft Virtual Academy
Record of Achievement - Microsoft Virtual AcademyCliff O'Sullivan
 

Tendances (7)

Getting started with Visual Testing using Applitools - @TPC, Feb2020
Getting started with Visual Testing using Applitools - @TPC, Feb2020Getting started with Visual Testing using Applitools - @TPC, Feb2020
Getting started with Visual Testing using Applitools - @TPC, Feb2020
 
[HCM Scrum Breakfast] How to improve product quality in Scrum Team
[HCM Scrum Breakfast] How to improve product quality in Scrum Team[HCM Scrum Breakfast] How to improve product quality in Scrum Team
[HCM Scrum Breakfast] How to improve product quality in Scrum Team
 
Continuous Delivery - Mr. Vu Hong Phat
Continuous Delivery - Mr. Vu Hong PhatContinuous Delivery - Mr. Vu Hong Phat
Continuous Delivery - Mr. Vu Hong Phat
 
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...
How to Automate your Online Tasks using IFTTT-Amy Carreon-amyzingvirtualprofe...
 
Plugged-In Management Workshop
Plugged-In Management WorkshopPlugged-In Management Workshop
Plugged-In Management Workshop
 
Visual Validation - The Missing Tip of the Automation Pyramid
Visual Validation - The Missing Tip of the Automation PyramidVisual Validation - The Missing Tip of the Automation Pyramid
Visual Validation - The Missing Tip of the Automation Pyramid
 
Record of Achievement - Microsoft Virtual Academy
Record of Achievement - Microsoft Virtual AcademyRecord of Achievement - Microsoft Virtual Academy
Record of Achievement - Microsoft Virtual Academy
 

En vedette

Managing Continuous Delivery of Mobile Apps - for the Enterprise
Managing Continuous Delivery of Mobile Apps - for the EnterpriseManaging Continuous Delivery of Mobile Apps - for the Enterprise
Managing Continuous Delivery of Mobile Apps - for the EnterpriseSauce Labs
 
Out of box page object design pattern, java
Out of box page object design pattern, javaOut of box page object design pattern, java
Out of box page object design pattern, javaCOMAQA.BY
 
Page Objects Done Right - selenium conference 2014
Page Objects Done Right - selenium conference 2014Page Objects Done Right - selenium conference 2014
Page Objects Done Right - selenium conference 2014Oren Rubin
 
Travelling to scotland
Travelling to scotlandTravelling to scotland
Travelling to scotlandcdoarg01
 
Tasawuf perbandingan
Tasawuf perbandinganTasawuf perbandingan
Tasawuf perbandinganNawal Nm
 
Fircroft Oil & Gas Powerpoint
Fircroft Oil & Gas PowerpointFircroft Oil & Gas Powerpoint
Fircroft Oil & Gas PowerpointShaun Garrathy
 
"Я - учитель!" эссе
"Я  - учитель!"  эссе"Я  - учитель!"  эссе
"Я - учитель!" эссеcdoarg01
 
Evaluation Question 6: Technology Table
Evaluation Question 6: Technology TableEvaluation Question 6: Technology Table
Evaluation Question 6: Technology TableJoe Hulme
 
Curriculum 2016_Eng
Curriculum 2016_EngCurriculum 2016_Eng
Curriculum 2016_EngCarlo Ceresa
 
2016 Oomen Can career teachers support parents in helping their child
2016 Oomen Can career teachers support parents in helping their child2016 Oomen Can career teachers support parents in helping their child
2016 Oomen Can career teachers support parents in helping their childAnnemarie Oomen
 

En vedette (20)

Managing Continuous Delivery of Mobile Apps - for the Enterprise
Managing Continuous Delivery of Mobile Apps - for the EnterpriseManaging Continuous Delivery of Mobile Apps - for the Enterprise
Managing Continuous Delivery of Mobile Apps - for the Enterprise
 
Out of box page object design pattern, java
Out of box page object design pattern, javaOut of box page object design pattern, java
Out of box page object design pattern, java
 
Page Objects Done Right - selenium conference 2014
Page Objects Done Right - selenium conference 2014Page Objects Done Right - selenium conference 2014
Page Objects Done Right - selenium conference 2014
 
Oca 3
Oca 3Oca 3
Oca 3
 
Travelling to scotland
Travelling to scotlandTravelling to scotland
Travelling to scotland
 
Tasawuf perbandingan
Tasawuf perbandinganTasawuf perbandingan
Tasawuf perbandingan
 
Fircroft Oil & Gas Powerpoint
Fircroft Oil & Gas PowerpointFircroft Oil & Gas Powerpoint
Fircroft Oil & Gas Powerpoint
 
Matrices
MatricesMatrices
Matrices
 
Presentación eduteka
Presentación edutekaPresentación eduteka
Presentación eduteka
 
"Я - учитель!" эссе
"Я  - учитель!"  эссе"Я  - учитель!"  эссе
"Я - учитель!" эссе
 
Evaluation Question 6: Technology Table
Evaluation Question 6: Technology TableEvaluation Question 6: Technology Table
Evaluation Question 6: Technology Table
 
Curriculum 2016_Eng
Curriculum 2016_EngCurriculum 2016_Eng
Curriculum 2016_Eng
 
Linesheet_FW16
Linesheet_FW16Linesheet_FW16
Linesheet_FW16
 
2016 Oomen Can career teachers support parents in helping their child
2016 Oomen Can career teachers support parents in helping their child2016 Oomen Can career teachers support parents in helping their child
2016 Oomen Can career teachers support parents in helping their child
 
Tutorial OCam
Tutorial OCamTutorial OCam
Tutorial OCam
 
Matt's Resumes_r
Matt's Resumes_rMatt's Resumes_r
Matt's Resumes_r
 
Syed_Khaja_Nooruddin.04042016
Syed_Khaja_Nooruddin.04042016Syed_Khaja_Nooruddin.04042016
Syed_Khaja_Nooruddin.04042016
 
Doc1
Doc1Doc1
Doc1
 
CV_Murtazov
CV_MurtazovCV_Murtazov
CV_Murtazov
 
5 Web 2.0 Tools
5 Web 2.0 Tools5 Web 2.0 Tools
5 Web 2.0 Tools
 

Similaire à Page objects in test automation

Treating test code as production code
Treating test code as production codeTreating test code as production code
Treating test code as production codelavanyam210
 
SearchLove Boston 2018 - Bartosz Goralewicz - JavaScript: Looking Past the ...
SearchLove Boston 2018 -  Bartosz Goralewicz -  JavaScript: Looking Past the ...SearchLove Boston 2018 -  Bartosz Goralewicz -  JavaScript: Looking Past the ...
SearchLove Boston 2018 - Bartosz Goralewicz - JavaScript: Looking Past the ...Distilled
 
Introducing Support for Dynamic Websites
Introducing Support for Dynamic WebsitesIntroducing Support for Dynamic Websites
Introducing Support for Dynamic WebsitesOptimizely
 
b4usolution_Appium Mobile Automation Testing Made Awesome
b4usolution_AppiumMobile Automation Testing Made Awesomeb4usolution_AppiumMobile Automation Testing Made Awesome
b4usolution_Appium Mobile Automation Testing Made Awesomeb4usolution .
 
Automated UI testing done right (DDDSydney)
Automated UI testing done right (DDDSydney)Automated UI testing done right (DDDSydney)
Automated UI testing done right (DDDSydney)Mehdi Khalili
 
Agile Testing Dilemmas
Agile Testing DilemmasAgile Testing Dilemmas
Agile Testing DilemmasAman King
 
Introduction to Web Components & Polymer Workshop - JS Interactive
Introduction to Web Components & Polymer Workshop - JS InteractiveIntroduction to Web Components & Polymer Workshop - JS Interactive
Introduction to Web Components & Polymer Workshop - JS InteractiveJohn Riviello
 
Measure camp tools of the cro rabble
Measure camp   tools of the cro rabbleMeasure camp   tools of the cro rabble
Measure camp tools of the cro rabbleCraig Sullivan
 
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...Tarun Gehani
 
Conversionista : Conversion manager course - Stockholm 20 march 2013
Conversionista : Conversion manager course  - Stockholm 20 march 2013Conversionista : Conversion manager course  - Stockholm 20 march 2013
Conversionista : Conversion manager course - Stockholm 20 march 2013Craig Sullivan
 
Web Performance & You - HighEdWeb Arkansas Version
Web Performance & You - HighEdWeb Arkansas VersionWeb Performance & You - HighEdWeb Arkansas Version
Web Performance & You - HighEdWeb Arkansas VersionDave Olsen
 
10 Web Performance Lessons For the 21st Century
10 Web Performance Lessons For the  21st Century10 Web Performance Lessons For the  21st Century
10 Web Performance Lessons For the 21st CenturyMateusz Kwasniewski
 
Agile testing - Testing From Day 1
Agile testing - Testing From Day 1Agile testing - Testing From Day 1
Agile testing - Testing From Day 1Kaizenko
 
What's so great about web driver?
What's so great about web driver?What's so great about web driver?
What's so great about web driver?mwinteringham
 
Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Edureka!
 
Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Edureka!
 
How BiggerPockets runs experiments faster with performance edge
How BiggerPockets runs experiments faster with performance edgeHow BiggerPockets runs experiments faster with performance edge
How BiggerPockets runs experiments faster with performance edgeOptimizely
 

Similaire à Page objects in test automation (20)

Treating test code as production code
Treating test code as production codeTreating test code as production code
Treating test code as production code
 
SearchLove Boston 2018 - Bartosz Goralewicz - JavaScript: Looking Past the ...
SearchLove Boston 2018 -  Bartosz Goralewicz -  JavaScript: Looking Past the ...SearchLove Boston 2018 -  Bartosz Goralewicz -  JavaScript: Looking Past the ...
SearchLove Boston 2018 - Bartosz Goralewicz - JavaScript: Looking Past the ...
 
Introducing Support for Dynamic Websites
Introducing Support for Dynamic WebsitesIntroducing Support for Dynamic Websites
Introducing Support for Dynamic Websites
 
b4usolution_Appium Mobile Automation Testing Made Awesome
b4usolution_AppiumMobile Automation Testing Made Awesomeb4usolution_AppiumMobile Automation Testing Made Awesome
b4usolution_Appium Mobile Automation Testing Made Awesome
 
Automated UI testing done right (DDDSydney)
Automated UI testing done right (DDDSydney)Automated UI testing done right (DDDSydney)
Automated UI testing done right (DDDSydney)
 
Os Souders
Os SoudersOs Souders
Os Souders
 
Agile Testing Dilemmas
Agile Testing DilemmasAgile Testing Dilemmas
Agile Testing Dilemmas
 
Web testing with Selenium
Web testing with SeleniumWeb testing with Selenium
Web testing with Selenium
 
Introduction to Web Components & Polymer Workshop - JS Interactive
Introduction to Web Components & Polymer Workshop - JS InteractiveIntroduction to Web Components & Polymer Workshop - JS Interactive
Introduction to Web Components & Polymer Workshop - JS Interactive
 
Measure camp tools of the cro rabble
Measure camp   tools of the cro rabbleMeasure camp   tools of the cro rabble
Measure camp tools of the cro rabble
 
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...
How to Enhance Your SEO When Redesigning an Ecommerce Website - Tarun Gehani,...
 
Conversionista : Conversion manager course - Stockholm 20 march 2013
Conversionista : Conversion manager course  - Stockholm 20 march 2013Conversionista : Conversion manager course  - Stockholm 20 march 2013
Conversionista : Conversion manager course - Stockholm 20 march 2013
 
Web Performance & You - HighEdWeb Arkansas Version
Web Performance & You - HighEdWeb Arkansas VersionWeb Performance & You - HighEdWeb Arkansas Version
Web Performance & You - HighEdWeb Arkansas Version
 
10 Web Performance Lessons For the 21st Century
10 Web Performance Lessons For the  21st Century10 Web Performance Lessons For the  21st Century
10 Web Performance Lessons For the 21st Century
 
Agile testing - Testing From Day 1
Agile testing - Testing From Day 1Agile testing - Testing From Day 1
Agile testing - Testing From Day 1
 
What's so great about web driver?
What's so great about web driver?What's so great about web driver?
What's so great about web driver?
 
Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!
 
Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!Learn why use selenium with 3 million dollar bugs!
Learn why use selenium with 3 million dollar bugs!
 
How BiggerPockets runs experiments faster with performance edge
How BiggerPockets runs experiments faster with performance edgeHow BiggerPockets runs experiments faster with performance edge
How BiggerPockets runs experiments faster with performance edge
 
HTML 5 Offline Web apps
HTML 5 Offline Web apps HTML 5 Offline Web apps
HTML 5 Offline Web apps
 

Dernier

2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...SUHANI PANDEY
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 

Dernier (20)

2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 

Page objects in test automation