8000 GitHub - TechieSDET/mobile_automation_configuration_for_mac
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

TechieSDET/mobile_automation_configuration_for_mac

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Installation Steps on Mac for Simulator

Steps 1: Install Java Development Kit (JDK)

https://www.oracle.com/technetwork/java/javase/downloads/index.html

Install the JDK

Steps 2: Setup Java Environment Variable Path

Open terminal and type the following command to open the .bash_profile file
nano ~/.bash_profile
Type the following
export JAVA_HOME=$(/usr/libexec/java_home)
Press Ctrl+X to exit the bash profile

Press Y to save the changes and press Enter

Step 3 : Install Android Studio

Download the Android studio from the following link
https://developer.android.com/studio/index.html
Install Android studio and move to the Applications.

Open Android studio, click on “Configure” and Select “SDK Manager”


Select “SDK Tools” tab and make sure the highlighted modules are checked and installed.

Step 4 : Setup Android Environment Variables

Open terminal and type the following command to open the .bash_profile file
nano ~/.bash_profile
Type the following in the next line
export ANDROID_HOME=/Users/$USER/Library/Android/sdk
export PATH=${PATH}:$ANDROID_HOME/platform-tools:$ANDROID_HOME/emulator:$ANDROID_HOME/tools/bin:ANDROID_HOME/tools
Press Ctrl+X to exit the bash profile
Press Y to save the changes and press Enter

Step 5 : Download and install Appium Desktop Client

Download the stable appium desktop for mac (.dmg file) from
https://github.com/appium/appium-desktop/releases

Install appium desktop client and move the appium to the applications folder

Step 6 : Download and Install XCode

  1. Download Xcode from
    https://developer.apple.com/download/
  2. Provide the apple id and password
  3. Download the stable version of xcode and install it and move it to Applications
  4. Download XCode Command Line Tools from
    https://developer.apple.com/download/more/
  5. The command line tools should be the same version of xcode or the lower version of xcode If xcode version is 9.3.3 and command line tools can be of 9.3.2 6. Install XCode Command Line Tools

Step 7 : Install Node JS

  1. Prerequisite
    a. Before install Node, you should need to install Homebrew Homebrew is a package manager for the Mac — it makes installing most open source software (like Node) as simple b. Open the Terminal app and type
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2>/dev/null
  2. Open the Terminal app and type
    brew install node
  3. To make sure you have Node and NPM installed, run two simple commands to see what version of each is installed
    node -v

Step 8 : Install the following dependencies

    Open the Terminal app and install the following by giving these commands. These dependencies are needed for Appium
      > brew install carthage
      > brew install libimobiledevice --HEAD
      > brew install ideviceinstaller
      > npm install -g ios-deploy
      

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0