Skip to main content

Posts

Showing posts with the label appium tutorial

How to handle native Android keyboard by using Appium?

How to handle native Android keyboard by using Appium?[ Up to date: java-client 6.x.x ] We are going to tap on the enter button For WebDriver ((AndroidDriver) driver ).pressKey( new KeyEvent(AndroidKey. ENTER )); For AndroidDriver driver .pressKey( new KeyEvent(AndroidKey. ENTER ));   For more KeyEvert please follow the link Android KeyEvent

Prepare Windows PC for Automating your Android Application by using APPIUM

Prepare Windows PC for Automating your Android Application by using APPIUM and run your first Automation script with TestNG framework. In this tutorial series I'm trying to show how to automat all types of mobile app ( Native , Hybrid , and Web ). Here I'm following few simple steps for the installation process. This tutorial not for those who are expert in Automation/APPIUM Prerequisite to use APPIUM 1. ANDROID SDK 2. JDK (Java Development Kit) 3. APPIUM server for Windows 4. IntelliJ IDEA (Community Edition) Steps: Step 1: Download all the prerequisite Step 2: Install JDK and set environment variable path Step 3: Install IntelliJ IDEA Step 4: Install SDK and set environment variable path Step 5: Install APPIUM server Step 6: Run your first Automation script Step 1: Download all the prerequisite ANDROID SDK (Download link) JDK (Java Development Kit) (Download link) APPIUM For Windows (Download link) IntelliJ ID...