SlideShare ist ein Scribd-Unternehmen logo
1 von 60
Downloaden Sie, um offline zu lesen
iOS Testing
with Appium.
Estefanía Fdez Muñoz
@Opensouthcode
HELLO!
I am Estefanía Fdez
Head of QA at
Previously… Head of QA at
Una QA en Apuros Blog. SevillaQA.
You can find me on Twitter as @estefafdez
Or Linkedin: https://es.linkedin.com/in/estefafdez
2
3
Roadmap:
- Prerequisites.
- Why Appium?
- TestApp
- Install Appium on MacOS.
- Live Example using Maven and Java.
1.
PREREQUISITES
How do we start?
4
To be able to test an iOS App you must have a Mac.
5
6
Xcode 9.4 (9F1027a) already installed.
.
You can download it from: https://developer.apple.com/xcode/
Or without a developer account: https://xcodereleases.com/
7
Download iOS simulator with iOS 11.3 version.
.
8
Download iOS simulator with iOS 11.3 version (II).
.
9
Eclipse IDE already installed.
.
You can download it from: https://www.eclipse.org/downloads/
Have an Apple ID
already created.
10
11
Patience….
.
2.
APPIUM
Why Appium?
12
13
Appium is an Open Source tool.
You can download it from: https://github.com/appium
14
Available for both platform: Android and iOS.
» Available for hybrid and native apps.
» 10 Programming Languages: Java,
Objective-C, JavaScript con Node.js, PHP,
Python, Ruby, C#, Clojure, or Perl.
» Mobile Automation Standard.
» Appium Community:
https://discuss.appium.io/
15
3.
TestApp
Show me some code!
16
How can I do an iOS App
to test?
17
Hello TestApp!
» Single View Application developed in Swift 3
for testing purposes.
» Download the code:
https://github.com/estefafdez/iOSTestApp
» iOS App extension: .ipa, .app.
18
TestApp
4.
INSTALL APPIUM
Ready? Let’s go!
19
» Homebrew
» Maven
» Java
» NodeJS
» Carthage
» Appium Server
» Appium Doctor
» WebDriverAgent
20
Things to
install
» Libimobiledevice
» ideviceinstaller
» ios-deploy
» Xcpretty
» Appium-ios-driver
» Appium Desktop
21
INSTALL
HOMEBREW
22
Homebrew installation.
» Go to: https://brew.sh/index_es.html
» Follow the steps!
23
Add Homebrew path to the ~/.bash_profile.
Type on your terminal:
» echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
» echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.bash_profile
» source ~/.bash_profile
24
INSTALL
MAVEN
25
Install Maven using Homebrew.
Type on your terminal:
» brew install maven
NOTE: This will install the latest version of maven available.
26
Install Maven using Homebrew (II).
Check your maven version:
» mvn -version
27
INSTALL
JAVA
28
Install Java using Homebrew.
Type on your terminal:
» brew cask install homebrew/cask-versions/java8
NOTE: We suggest install version: 8.
29
Add Java path to the ~/.bash_profile.
Type on your terminal:
» echo 'export JAVA_HOME="$(/usr/libexec/java_home)"' >>
~/.bash_profile
» echo 'export PATH="$JAVA_HOME/bin:$PATH"' >> ~/.bash_profile
» source ~/.bash_profile
30
Install Java using Homebrew (II).
Check your java version:
» java -version
31
INSTALL
NODE
32
Install Node using Homebrew.
Type on your terminal:
» brew install node
NOTE: We suggest install version: v10.6.0.
33
Install Node using Homebrew (II).
Check your node version:
» node -v
34
INSTALL
CARTHAGE
35
Install Carthage using Homebrew.
Type on your terminal:
» brew install carthage
36
INSTALL
APPIUM
SERVER
37
Install Appium Server using Homebrew.
Type on your terminal:
» npm install -g appium@1.12.1 --unsafe-perm=true --allow-root
NOTES:
» We suggest install version: 1.12.1.
» The --unsafe-perm=true and --allow-root are not mandatory
but they are necessary sometimes.
38
Install Appium Server using Homebrew (II).
Check your Appium version:
» appium -v
39
Execute Appium Server by command line.
Type on your terminal:
» appium &
40
Stop Appium Server by command line.
Type on your terminal:
» killall node
41
INSTALL
APPIUM
DOCTOR
42
Install Appium Doctor using Homebrew.
Type on your terminal:
» npm install -g appium-doctor
43
Check iOS installation is ok with Appium Doctor
To check if everything you need to start with Appium and iOS is
correct, type on your terminal:
» appium-doctor --ios --yes
44
CONFIGURE
WEBDRIVER
AGENT
45
Configure WebDriverAgent
Create the following folder:
» mkdir -p Resources/WebDriverAgent.bundle
Go to Appium-XCUITest and WebDriverAgent folder:
» cd
"/usr/local/lib/node_modules/appium/node_modules/appium-xcuitest
-driver/WebDriverAgent/"
46
Configure WebDriverAgent (II)
Execute the bootstrap script:
» ./Scripts/bootstrap.sh
Now let’s go to the Xcode!
47
Configure WebDriverAgent on Xcode.
» Now, select the WebDriverAgent project and click on the Info tab to
change on the Deployment Target , the iOS Deployment Target.
Select the iOS version you want to test your application.
48
Configure WebDriverAgent on Xcode.
» On the Build Settings tab, on the Deployment settings, change the
iOS Deployment Target as well, to match the same version as the
Info tab.
49
INSTALL
LAST
LIBRARIES
50
Install more libraries using Homebrew.
Type on your terminal:
» brew install libimobiledevice --HEAD
» npm install -g ios-deploy --unsafe-perm=true --allow-root
» sudo gem install xcpretty
51
Install more libraries using Homebrew (II).
Type on your terminal:
» brew install ideviceinstaller
» npm install appium-ios-driver
52
INSTALL
APPIUM
DESKTOP
53
Install Appium Desktop.
» Appium Desktop is an app for Mac, Windows, and Linux which
gives you the power of the Appium automation server in a
beautiful and flexible UI. You can inspect element on an App.
» You can download it from:
https://github.com/appium/appium-desktop
54
Install Appium Desktop (II).
55
Tutorial about Appium Desktop available here:
» https://unaqaenapuros.wordpress.com/2019/02/27/048-ap
pium-inspector/
5.
LIVE EXAMPLE USING
MAVEN AND JAVA.
Ready? Let’s go!
56
Download the repository:
57
» https://github.com/estefafdez/appium-native-java-example
LIVE EXAMPLE….
START NOW!
58
6.
SUCCESS!
Enjoy testing your
iOS App!
59
THANKS!
Any questions?
You can find me at @estefafdez & estefafdez@gmail.com
» http://estefafdez.com
» https://unaqaenapuros.wordpress.com/
60

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Introduction To Mobile-Automation
Introduction To Mobile-AutomationIntroduction To Mobile-Automation
Introduction To Mobile-Automation
 
Appium ppt
Appium pptAppium ppt
Appium ppt
 
Appium Presentation
Appium Presentation Appium Presentation
Appium Presentation
 
Mobile Automation with Appium
Mobile Automation with AppiumMobile Automation with Appium
Mobile Automation with Appium
 
Microsoft app center
Microsoft app centerMicrosoft app center
Microsoft app center
 
Mobile Test Automation - Appium
Mobile Test Automation - AppiumMobile Test Automation - Appium
Mobile Test Automation - Appium
 
Android studio installation
Android studio installationAndroid studio installation
Android studio installation
 
App center an overview
App center  an overviewApp center  an overview
App center an overview
 
How to build ios app
How to build ios appHow to build ios app
How to build ios app
 
Apple push notification service
Apple push notification serviceApple push notification service
Apple push notification service
 
Appium an introduction
Appium   an introductionAppium   an introduction
Appium an introduction
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - Explained
 
The history of selenium
The history of seleniumThe history of selenium
The history of selenium
 
Appium: Automation for Mobile Apps
Appium: Automation for Mobile AppsAppium: Automation for Mobile Apps
Appium: Automation for Mobile Apps
 
Mobile application testing tutorial
Mobile application testing tutorialMobile application testing tutorial
Mobile application testing tutorial
 
Appium, Test-Driven Development, and Continuous Integration
Appium, Test-Driven Development, and Continuous IntegrationAppium, Test-Driven Development, and Continuous Integration
Appium, Test-Driven Development, and Continuous Integration
 
Flutter overview - advantages & disadvantages for business
Flutter overview - advantages & disadvantages for businessFlutter overview - advantages & disadvantages for business
Flutter overview - advantages & disadvantages for business
 
Appium.pptx
Appium.pptxAppium.pptx
Appium.pptx
 
Appium Architecture | How Appium Works | Edureka
Appium Architecture | How Appium Works | EdurekaAppium Architecture | How Appium Works | Edureka
Appium Architecture | How Appium Works | Edureka
 
Automation Testing With Appium
Automation Testing With AppiumAutomation Testing With Appium
Automation Testing With Appium
 

Ähnlich wie [Open southcode] ios testing with appium

BLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docxBLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docx
moirarandell
 
ApppiumDoc_version2015
ApppiumDoc_version2015ApppiumDoc_version2015
ApppiumDoc_version2015
Amit DEWAN
 

Ähnlich wie [Open southcode] ios testing with appium (20)

Lezione 02 React and React Native installation and Configuration
Lezione 02   React and  React Native installation and ConfigurationLezione 02   React and  React Native installation and Configuration
Lezione 02 React and React Native installation and Configuration
 
Appium on mac platform
Appium on mac platformAppium on mac platform
Appium on mac platform
 
Mobile app with cordova
Mobile app with cordovaMobile app with cordova
Mobile app with cordova
 
Mobile app with cordova
Mobile app with cordovaMobile app with cordova
Mobile app with cordova
 
Elixir Deployment Tools
Elixir Deployment ToolsElixir Deployment Tools
Elixir Deployment Tools
 
BLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docxBLCN532 Lab 1Set up your development environmentV2.0.docx
BLCN532 Lab 1Set up your development environmentV2.0.docx
 
Build a private cloud – prototype and test with open nebula
Build a private cloud – prototype and test with open nebulaBuild a private cloud – prototype and test with open nebula
Build a private cloud – prototype and test with open nebula
 
IOS 11 setup with appium latest
IOS 11 setup with appium  latestIOS 11 setup with appium  latest
IOS 11 setup with appium latest
 
Orangescrum In App Chat Add-on User Manual
Orangescrum In App Chat Add-on User ManualOrangescrum In App Chat Add-on User Manual
Orangescrum In App Chat Add-on User Manual
 
Lesson 02 - React Native Development Environment Setup
Lesson 02 - React Native Development Environment SetupLesson 02 - React Native Development Environment Setup
Lesson 02 - React Native Development Environment Setup
 
ApppiumDoc_version2015
ApppiumDoc_version2015ApppiumDoc_version2015
ApppiumDoc_version2015
 
Continuous Integration with Hackintosh
Continuous Integration with HackintoshContinuous Integration with Hackintosh
Continuous Integration with Hackintosh
 
Installing iOS and Android Simulators on MacOSX
Installing iOS and Android Simulators on MacOSXInstalling iOS and Android Simulators on MacOSX
Installing iOS and Android Simulators on MacOSX
 
DevNet Associate : Python introduction
DevNet Associate : Python introductionDevNet Associate : Python introduction
DevNet Associate : Python introduction
 
Cordova iOS Native Plugin Development
Cordova iOS Native Plugin DevelopmentCordova iOS Native Plugin Development
Cordova iOS Native Plugin Development
 
Installing java, eclipse and maven
Installing java, eclipse and mavenInstalling java, eclipse and maven
Installing java, eclipse and maven
 
Meteor
MeteorMeteor
Meteor
 
.Net framework 4.5 on raspberry pi
.Net framework 4.5 on raspberry pi.Net framework 4.5 on raspberry pi
.Net framework 4.5 on raspberry pi
 
.Net framework 4.5 on raspberry pi
.Net framework 4.5 on raspberry pi.Net framework 4.5 on raspberry pi
.Net framework 4.5 on raspberry pi
 
Installing maven on windows
Installing maven on windowsInstalling maven on windows
Installing maven on windows
 

Kürzlich hochgeladen

The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 

Kürzlich hochgeladen (20)

MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%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
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
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...
 

[Open southcode] ios testing with appium