SlideShare a Scribd company logo
Challenges of automated mobile UI testing
Bartłomiej Pisulak
Software Engineer – Pegasystems
Trainer – Compendium CE
2
Agenda
What are we going
to talk about?
•Challenges
•Frameworks
•Demo
•Q&A
3
Why is it important?
4
App User Retention
5
Challenge 1
Defining scope
6
Challenge 2
Choosing the right technique
Manual Structural Visual
7
Challenge 3
Maintenance (UI is subject to evolution)
8
Challenge 4
Automation
9
Frameworks
10
Appium
Appium is the cross-platform
solution for native and hybrid
mobile automation
“One framework to rule them all”
11
Appium Architecture
HTTP server that creates and
handles WebDriver sessions
Starts a “test case” on the
device that spawns a server
and listens for proxies
commands
12
Appium Philosophy
Test the same
app you submit
to the
marketplace
Write your tests
in any language,
using any
framework
Use a standard
automation
specification and
API
Build a large and
thriving open-
source
community effort
13
Appium on iOS
14
Connection initialization
desired_caps = {}
desired_caps['appium-version'] = '1.0’
desired_caps['platformName'] = 'iOS’
desired_caps['platformVersion'] = '8.1’
desired_caps['deviceName'] = 'iPhone 5s’
desired_caps['app'] = os.path.abspath(‘OSS2015.app')
self.driver = webdriver.Remote('http://0.0.0.0:4723/wd/hub',
desired_caps)
15
Connection initialization
desired_caps = {}
desired_caps['appium-version'] = '1.0’
desired_caps['platformName'] = 'Android’
desired_caps['platformVersion'] = '4.4’
desired_caps['deviceName'] = 'Nexus’
desired_caps['app'] = os.path.abspath(‘app-debug.apk')
self.driver = webdriver.Remote('http://0.0.0.0:4723/wd/hub',
desired_caps)
16
Code examples
btn =
self.driver.find_element_by_xpath("//UIAApplication[1]/UIAWindow[1]/UIA
Button[1]")
btn = self.driver.find_element_by_name("SAY HELLO")
Getting elements
Interaction
btn.click()
Combining with unit tests
self.assertEqual(btn.text, "SAY HELLO")
17
Demo: OSSa
18
Demo: Real-life Case
How to add automated UI tests to cross-platform development IDE
Python + Appium + Imagemagick +
Jenkins
19
To sum up…
Ask yourself: do I need UI testing?
Realize your goals
Design carefully
Maintenance!!!
Automate
Don’t reinvent the wheel – spend your time
on doing creative things :)
20
Q & A

More Related Content

What's hot

Using Selenium To Test Mobile? Meet Appium!
Using Selenium To Test Mobile? Meet Appium!Using Selenium To Test Mobile? Meet Appium!
Using Selenium To Test Mobile? Meet Appium!
Sauce Labs
 
Type Cross browsers testing
Type Cross browsers testingType Cross browsers testing
Type Cross browsers testing
Nguyễn Đào Thiên Thư
 
Headless browser a stepping stone towards developing smarter web applicatio...
Headless browser   a stepping stone towards developing smarter web applicatio...Headless browser   a stepping stone towards developing smarter web applicatio...
Headless browser a stepping stone towards developing smarter web applicatio...
Bala Murugan
 
Test automation with trends
Test automation with trendsTest automation with trends
Test automation within a scrum process
Test automation within a scrum processTest automation within a scrum process
Test automation within a scrum process
Kushan Shalindra Amarasiri - Technical QE Specialist
 
UI5 supportability tools explained
UI5 supportability tools explainedUI5 supportability tools explained
UI5 supportability tools explained
Maxim Naidenov
 
Mobile applications and automation testing
Mobile applications and automation testingMobile applications and automation testing
Mobile applications and automation testing
IndicThreads
 
UI Integrations Test
UI Integrations TestUI Integrations Test
UI Integrations Test
Herwidodo kusumobroto
 
Automation Testing Using WebDriver
Automation Testing Using WebDriverAutomation Testing Using WebDriver
Automation Testing Using WebDriver
Evozon Test Lab
 
Untitled presentation
Untitled presentationUntitled presentation
Untitled presentation
saurabh chaube
 
E2E testing with UIVeri5
E2E testing with UIVeri5E2E testing with UIVeri5
E2E testing with UIVeri5
Maxim Naidenov
 
Reliable application tests for ui5 apps
Reliable application tests for ui5 appsReliable application tests for ui5 apps
Reliable application tests for ui5 apps
Maxim Naidenov
 
SaaS Digital Assurance Lab
SaaS Digital Assurance LabSaaS Digital Assurance Lab
SaaS Digital Assurance Lab
Experitest
 
Challenges and Opportunities Faced While Migrating to Selenium
Challenges and Opportunities Faced While Migrating to SeleniumChallenges and Opportunities Faced While Migrating to Selenium
Challenges and Opportunities Faced While Migrating to Selenium
BugRaptors
 
Habits of Highly Effective Platform Teams: Unlocking the Value of PCF
Habits of Highly Effective Platform Teams: Unlocking the Value of PCFHabits of Highly Effective Platform Teams: Unlocking the Value of PCF
Habits of Highly Effective Platform Teams: Unlocking the Value of PCF
VMware Tanzu
 
Selenium Automation Testing- Features and Benefits
Selenium Automation Testing-  Features and BenefitsSelenium Automation Testing-  Features and Benefits
Selenium Automation Testing- Features and Benefits
adityakumar2080
 
Presentation for gips
Presentation for gipsPresentation for gips
Presentation for gips
GIPS Infotech
 
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
Dan Vitoriano
 
Why does Selenium Succeed?
Why does Selenium Succeed?Why does Selenium Succeed?
Why does Selenium Succeed?
Venessa Serrao
 
Overcoming Test Automation Obstacles
Overcoming Test Automation ObstaclesOvercoming Test Automation Obstacles
Overcoming Test Automation Obstacles
Perfecto by Perforce
 

What's hot (20)

Using Selenium To Test Mobile? Meet Appium!
Using Selenium To Test Mobile? Meet Appium!Using Selenium To Test Mobile? Meet Appium!
Using Selenium To Test Mobile? Meet Appium!
 
Type Cross browsers testing
Type Cross browsers testingType Cross browsers testing
Type Cross browsers testing
 
Headless browser a stepping stone towards developing smarter web applicatio...
Headless browser   a stepping stone towards developing smarter web applicatio...Headless browser   a stepping stone towards developing smarter web applicatio...
Headless browser a stepping stone towards developing smarter web applicatio...
 
Test automation with trends
Test automation with trendsTest automation with trends
Test automation with trends
 
Test automation within a scrum process
Test automation within a scrum processTest automation within a scrum process
Test automation within a scrum process
 
UI5 supportability tools explained
UI5 supportability tools explainedUI5 supportability tools explained
UI5 supportability tools explained
 
Mobile applications and automation testing
Mobile applications and automation testingMobile applications and automation testing
Mobile applications and automation testing
 
UI Integrations Test
UI Integrations TestUI Integrations Test
UI Integrations Test
 
Automation Testing Using WebDriver
Automation Testing Using WebDriverAutomation Testing Using WebDriver
Automation Testing Using WebDriver
 
Untitled presentation
Untitled presentationUntitled presentation
Untitled presentation
 
E2E testing with UIVeri5
E2E testing with UIVeri5E2E testing with UIVeri5
E2E testing with UIVeri5
 
Reliable application tests for ui5 apps
Reliable application tests for ui5 appsReliable application tests for ui5 apps
Reliable application tests for ui5 apps
 
SaaS Digital Assurance Lab
SaaS Digital Assurance LabSaaS Digital Assurance Lab
SaaS Digital Assurance Lab
 
Challenges and Opportunities Faced While Migrating to Selenium
Challenges and Opportunities Faced While Migrating to SeleniumChallenges and Opportunities Faced While Migrating to Selenium
Challenges and Opportunities Faced While Migrating to Selenium
 
Habits of Highly Effective Platform Teams: Unlocking the Value of PCF
Habits of Highly Effective Platform Teams: Unlocking the Value of PCFHabits of Highly Effective Platform Teams: Unlocking the Value of PCF
Habits of Highly Effective Platform Teams: Unlocking the Value of PCF
 
Selenium Automation Testing- Features and Benefits
Selenium Automation Testing-  Features and BenefitsSelenium Automation Testing-  Features and Benefits
Selenium Automation Testing- Features and Benefits
 
Presentation for gips
Presentation for gipsPresentation for gips
Presentation for gips
 
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
User experience guidelines for Universal Windows Platform (UWP) appsUwp app d...
 
Why does Selenium Succeed?
Why does Selenium Succeed?Why does Selenium Succeed?
Why does Selenium Succeed?
 
Overcoming Test Automation Obstacles
Overcoming Test Automation ObstaclesOvercoming Test Automation Obstacles
Overcoming Test Automation Obstacles
 

Viewers also liked

Engaging with Social Media
Engaging with Social MediaEngaging with Social Media
Engaging with Social Media
sociamigo
 
6 Ways Your Brain Transforms Sound into Emotion
6 Ways Your Brain Transforms Sound into Emotion6 Ways Your Brain Transforms Sound into Emotion
6 Ways Your Brain Transforms Sound into Emotion
Hearing Aid Healthcare
 
綠能27植萃粉 網路版
綠能27植萃粉 網路版綠能27植萃粉 網路版
綠能27植萃粉 網路版
蔓繻 林
 
Sudhir Resume Upadted
Sudhir Resume Upadted Sudhir Resume Upadted
Sudhir Resume Upadted
Sudhir Mishra
 
Waikato philanthropy series workshop 3 final
Waikato philanthropy series workshop 3 finalWaikato philanthropy series workshop 3 final
Waikato philanthropy series workshop 3 final
Katefnz
 
Наш герой - Птушкин Валерий Васильевич
Наш герой - Птушкин Валерий ВасильевичНаш герой - Птушкин Валерий Васильевич
Наш герой - Птушкин Валерий Васильевич
pnextorg
 
Бодряева Любовь Васильевна
Бодряева Любовь ВасильевнаБодряева Любовь Васильевна
Бодряева Любовь Васильевна
pnextorg
 
Fundamentals of-management
Fundamentals of-managementFundamentals of-management
Fundamentals of-management
শরীফ sharif
 
Red4348 critical assignment 1
Red4348 critical assignment 1Red4348 critical assignment 1
Red4348 critical assignment 1
egurklis
 
04. pti perangkat keras; cpu dan alat penyimpan
04. pti   perangkat keras; cpu dan alat penyimpan04. pti   perangkat keras; cpu dan alat penyimpan
04. pti perangkat keras; cpu dan alat penyimpan
Herii Disubang
 
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
DGCommunications
 
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
DGCommunications
 
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
Ellen Saputra
 
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
DGCommunications
 
Decora Brochure 2015
Decora Brochure 2015Decora Brochure 2015
Decora Brochure 2015
Laura Martin
 
Media Theories
Media Theories Media Theories
Media Theories
Dylan0akes
 
03. pti perangkat lunak
03. pti   perangkat lunak03. pti   perangkat lunak
03. pti perangkat lunak
Herii Disubang
 
The art of Building Bridges for Android Hybrid Apps
The art of Building Bridges for Android Hybrid AppsThe art of Building Bridges for Android Hybrid Apps
The art of Building Bridges for Android Hybrid Apps
Bartłomiej Pisulak
 
Awareness on indian union budget
Awareness on indian union budgetAwareness on indian union budget
Awareness on indian union budget
verikadivya
 
Canada: Spring Trends | Tips from The Grounds Guys®
Canada: Spring Trends | Tips from The Grounds Guys®Canada: Spring Trends | Tips from The Grounds Guys®
Canada: Spring Trends | Tips from The Grounds Guys®
DGCommunications
 

Viewers also liked (20)

Engaging with Social Media
Engaging with Social MediaEngaging with Social Media
Engaging with Social Media
 
6 Ways Your Brain Transforms Sound into Emotion
6 Ways Your Brain Transforms Sound into Emotion6 Ways Your Brain Transforms Sound into Emotion
6 Ways Your Brain Transforms Sound into Emotion
 
綠能27植萃粉 網路版
綠能27植萃粉 網路版綠能27植萃粉 網路版
綠能27植萃粉 網路版
 
Sudhir Resume Upadted
Sudhir Resume Upadted Sudhir Resume Upadted
Sudhir Resume Upadted
 
Waikato philanthropy series workshop 3 final
Waikato philanthropy series workshop 3 finalWaikato philanthropy series workshop 3 final
Waikato philanthropy series workshop 3 final
 
Наш герой - Птушкин Валерий Васильевич
Наш герой - Птушкин Валерий ВасильевичНаш герой - Птушкин Валерий Васильевич
Наш герой - Птушкин Валерий Васильевич
 
Бодряева Любовь Васильевна
Бодряева Любовь ВасильевнаБодряева Любовь Васильевна
Бодряева Любовь Васильевна
 
Fundamentals of-management
Fundamentals of-managementFundamentals of-management
Fundamentals of-management
 
Red4348 critical assignment 1
Red4348 critical assignment 1Red4348 critical assignment 1
Red4348 critical assignment 1
 
04. pti perangkat keras; cpu dan alat penyimpan
04. pti   perangkat keras; cpu dan alat penyimpan04. pti   perangkat keras; cpu dan alat penyimpan
04. pti perangkat keras; cpu dan alat penyimpan
 
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
Proper Pool and Fountain Maintenance | Tips from The Grounds Guys®
 
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
Canada: Keeping Things Green This Summer | Tips from The Grounds Guys®
 
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
MAFMP - Ellen A. Saputra 22051422 - Practice of Cross-Genre in 'Modern' Holly...
 
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
Canada: Fall Colour: What to Plant | Tips from The Grounds Guys® Landscape Ma...
 
Decora Brochure 2015
Decora Brochure 2015Decora Brochure 2015
Decora Brochure 2015
 
Media Theories
Media Theories Media Theories
Media Theories
 
03. pti perangkat lunak
03. pti   perangkat lunak03. pti   perangkat lunak
03. pti perangkat lunak
 
The art of Building Bridges for Android Hybrid Apps
The art of Building Bridges for Android Hybrid AppsThe art of Building Bridges for Android Hybrid Apps
The art of Building Bridges for Android Hybrid Apps
 
Awareness on indian union budget
Awareness on indian union budgetAwareness on indian union budget
Awareness on indian union budget
 
Canada: Spring Trends | Tips from The Grounds Guys®
Canada: Spring Trends | Tips from The Grounds Guys®Canada: Spring Trends | Tips from The Grounds Guys®
Canada: Spring Trends | Tips from The Grounds Guys®
 

Similar to Challenges of automated mobile UI testing

A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfA Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
kalichargn70th171
 
Appium.pptx
Appium.pptxAppium.pptx
Appium.pptx
SameerAlam82
 
Mobile Automation with Appium
Mobile Automation with AppiumMobile Automation with Appium
Mobile Automation with Appium
Manoj Kumar Kumar
 
ATAGTR2017 Appium
ATAGTR2017 AppiumATAGTR2017 Appium
ATAGTR2017 Appium
Agile Testing Alliance
 
The ultimate guide to mobile app testing with appium
The ultimate guide to mobile app testing with appiumThe ultimate guide to mobile app testing with appium
The ultimate guide to mobile app testing with appium
headspin2
 
Building And Executing Test Cases with Appium and Various Test Frameworks.pdf
Building And Executing Test Cases with Appium and Various Test Frameworks.pdfBuilding And Executing Test Cases with Appium and Various Test Frameworks.pdf
Building And Executing Test Cases with Appium and Various Test Frameworks.pdf
pCloudy
 
Appium solution
Appium solutionAppium solution
Appium solution
Nael Abd Eljawad
 
Automation using Appium
Automation using AppiumAutomation using Appium
Automation using Appium
Livares Technologies Pvt Ltd
 
Decoding Appium No-Code Test Automation With HeadSpin.pdf
Decoding Appium No-Code Test Automation With HeadSpin.pdfDecoding Appium No-Code Test Automation With HeadSpin.pdf
Decoding Appium No-Code Test Automation With HeadSpin.pdf
kalichargn70th171
 
A Step-by-Step Guide to Test Automation with Appium.pdf
A Step-by-Step Guide to Test Automation with Appium.pdfA Step-by-Step Guide to Test Automation with Appium.pdf
A Step-by-Step Guide to Test Automation with Appium.pdf
flufftailshop
 
Automation Testing With Appium
Automation Testing With AppiumAutomation Testing With Appium
Automation Testing With Appium
Knoldus Inc.
 
Top 20 best automation testing tools
Top 20 best automation testing toolsTop 20 best automation testing tools
Top 20 best automation testing tools
QACraft
 
Basics of Scriptless Automation for Web and Mobile Apps (1).pdf
Basics of Scriptless Automation for Web and Mobile Apps (1).pdfBasics of Scriptless Automation for Web and Mobile Apps (1).pdf
Basics of Scriptless Automation for Web and Mobile Apps (1).pdf
pcloudy2
 
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
QADay
 
Designing an effective hybrid apps automation framework
Designing an effective hybrid apps automation frameworkDesigning an effective hybrid apps automation framework
Designing an effective hybrid apps automation framework
Andrea Tino
 
Appium Testing.pdf
Appium Testing.pdfAppium Testing.pdf
Appium Testing.pdf
AnanthReddy38
 
Setup and run automated test framework for android application
Setup and run automated test framework for android applicationSetup and run automated test framework for android application
Setup and run automated test framework for android application
Konstantin Natalukha
 
Appium an introduction
Appium   an introductionAppium   an introduction
Appium an introduction
Vivek Shringi
 
International journal of applied sciences and innovation vol 2015 - no 1 - ...
International journal of applied sciences and innovation   vol 2015 - no 1 - ...International journal of applied sciences and innovation   vol 2015 - no 1 - ...
International journal of applied sciences and innovation vol 2015 - no 1 - ...
sophiabelthome
 
Appium & Selenium Alone vs Appium & Selenium with Perfecto
Appium & Selenium Alone vs Appium & Selenium with PerfectoAppium & Selenium Alone vs Appium & Selenium with Perfecto
Appium & Selenium Alone vs Appium & Selenium with Perfecto
Lizzy Guido (she/her)
 

Similar to Challenges of automated mobile UI testing (20)

A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfA Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
 
Appium.pptx
Appium.pptxAppium.pptx
Appium.pptx
 
Mobile Automation with Appium
Mobile Automation with AppiumMobile Automation with Appium
Mobile Automation with Appium
 
ATAGTR2017 Appium
ATAGTR2017 AppiumATAGTR2017 Appium
ATAGTR2017 Appium
 
The ultimate guide to mobile app testing with appium
The ultimate guide to mobile app testing with appiumThe ultimate guide to mobile app testing with appium
The ultimate guide to mobile app testing with appium
 
Building And Executing Test Cases with Appium and Various Test Frameworks.pdf
Building And Executing Test Cases with Appium and Various Test Frameworks.pdfBuilding And Executing Test Cases with Appium and Various Test Frameworks.pdf
Building And Executing Test Cases with Appium and Various Test Frameworks.pdf
 
Appium solution
Appium solutionAppium solution
Appium solution
 
Automation using Appium
Automation using AppiumAutomation using Appium
Automation using Appium
 
Decoding Appium No-Code Test Automation With HeadSpin.pdf
Decoding Appium No-Code Test Automation With HeadSpin.pdfDecoding Appium No-Code Test Automation With HeadSpin.pdf
Decoding Appium No-Code Test Automation With HeadSpin.pdf
 
A Step-by-Step Guide to Test Automation with Appium.pdf
A Step-by-Step Guide to Test Automation with Appium.pdfA Step-by-Step Guide to Test Automation with Appium.pdf
A Step-by-Step Guide to Test Automation with Appium.pdf
 
Automation Testing With Appium
Automation Testing With AppiumAutomation Testing With Appium
Automation Testing With Appium
 
Top 20 best automation testing tools
Top 20 best automation testing toolsTop 20 best automation testing tools
Top 20 best automation testing tools
 
Basics of Scriptless Automation for Web and Mobile Apps (1).pdf
Basics of Scriptless Automation for Web and Mobile Apps (1).pdfBasics of Scriptless Automation for Web and Mobile Apps (1).pdf
Basics of Scriptless Automation for Web and Mobile Apps (1).pdf
 
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
КОСТЯНТИН НАТАЛУХА «Setup and run automated test framework for Android applic...
 
Designing an effective hybrid apps automation framework
Designing an effective hybrid apps automation frameworkDesigning an effective hybrid apps automation framework
Designing an effective hybrid apps automation framework
 
Appium Testing.pdf
Appium Testing.pdfAppium Testing.pdf
Appium Testing.pdf
 
Setup and run automated test framework for android application
Setup and run automated test framework for android applicationSetup and run automated test framework for android application
Setup and run automated test framework for android application
 
Appium an introduction
Appium   an introductionAppium   an introduction
Appium an introduction
 
International journal of applied sciences and innovation vol 2015 - no 1 - ...
International journal of applied sciences and innovation   vol 2015 - no 1 - ...International journal of applied sciences and innovation   vol 2015 - no 1 - ...
International journal of applied sciences and innovation vol 2015 - no 1 - ...
 
Appium & Selenium Alone vs Appium & Selenium with Perfecto
Appium & Selenium Alone vs Appium & Selenium with PerfectoAppium & Selenium Alone vs Appium & Selenium with Perfecto
Appium & Selenium Alone vs Appium & Selenium with Perfecto
 

Challenges of automated mobile UI testing