Appium 1.4.13 Released

Thank you @afwang
I hope it works on Ubuntu 14.04…

@afwang

Can you please explain me in detail, where should I write the test cases, to run on android device. Am kinda new to Appium. Explain with a simple test case (if possible).

After I run these commands :
npm install -g appium
appium

I am getting this :

info: Welcome to Appium v1.4.16 (REV ae6877eff263066b26328d457bd285c0cc62430d)
info: Appium REST http interface listener started on 0.0.0.0:4723
info: Console LogLevel: debug

When I visit the site http://0.0.0.0:4723/wd/hub/status I get this on the web page:
{“status”:0,“value”:{“build”:{“version”:“1.4.16”,“revision”:“ae6877eff263066b26328d457bd285c0cc62430d”}}}

and this in the terminal :
info: --> GET /wd/hub/status {}
info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.4.16”,“revision”:“ae6877eff263066b26328d457bd285c0cc62430d”}}}
info: <-- GET /wd/hub/status 304 17.101 ms - - {“status”:0,“value”:{“build”:{“version”:“1.4.16”,“revision”:“ae6877eff263066b26328d457bd285c0cc62430d”}}}

appium-doctor --android gives me this :

karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13$ appium-doctor --android
Running Android Checks
:heavy_check_mark: ANDROID_HOME is set to "/home/karthik/selenium/android-sdk-linux"
:heavy_check_mark: JAVA_HOME is set to "/usr/lib/jvm/java-7-openjdk-amd64."
:heavy_check_mark: ADB exists at /home/karthik/selenium/android-sdk-linux/platform-tools/adb
:heavy_check_mark: Android exists at /home/karthik/selenium/android-sdk-linux/tools/android
:heavy_check_mark: Emulator exists at /home/karthik/selenium/android-sdk-linux/tools/emulator
:heavy_check_mark: Android Checks were successful.

:heavy_check_mark: All Checks were successful
karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13$

Appium works on a client-server model. Appium acts as the server, and your test cases behave as the client. If you have ever used Selenium hub before, launching a test with Appium is closely similar.

Without using a specific language, the basic steps you want to take to start a test with Appium are:

  1. Instantiate an Appium driver using the “http://0.0.0.0:4723/wd/hub” URL. If Appium is running remotely, you would use “http://(IP address of Appium’s machine):(port Appium server is listening on)/wd/hub”
  2. Use the various WebDriver API commands to interact with the device.
  3. End the driver session.

A quick example in Java:

DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability("platform", "Android");
caps.setCapability("deviceName", "Android");
caps.setCapability("app", "/path/to/apk");
AppiumDriver<MobileElement> driver = new AppiumDriver<>(new URL("http://localhost:4723/wd/hub"), caps);
//Find a TextView element on the screen
MobileElement text = driver.findElement(By.className("android.widget.TextView"));
System.out.println("TextView's text is: "+ text.getText());
//Click the text view
text.click();
//driver.tap(1, text, 1); would work as well
driver.quit(); // End the session
1 Like

Do we get GUI part of Appium, like below image in linux (ubuntu 14.04) ??

if yes, then how ??

No, the GUI version is not available for Linux systems. For my Linux systems, I install Appium using NPM, or I run it from source.

Hello @afwang
Thanks a lot for helping me in setting up Appium…

I am running this python code:

import os
import unittest
from appium import webdriver
from time import sleep

class ChessAndroidTests(unittest.TestCase):
“Class to run tests against the Chess Free app”
def setUp(self):
“Setup for the test”
desired_caps = {}
desired_caps[‘platformName’] = ‘Android’
desired_caps[‘platformVersion’] = ‘4.4.2’
desired_caps[‘deviceName’] = ‘karthikphone1’
# Returns abs path relative to this file and not cwd
desired_caps[‘app’] = ‘/home/karthik/appiumworkspace/tests/uk.co.aifactory.chessfree.apk’
desired_caps[‘appPackage’] = ‘uk.co.aifactory.chessfree’
desired_caps[‘appActivity’] = ‘.ChessFreeActivity’
self.driver = webdriver.Remote(‘http://localhost:4723/wd/hub’, desired_caps)

def test_single_player_mode1(self):
    "Test the Single Player mode launches correctly"
    element = self.driver.find_element_by_name("PLAY!")
    element.click()
    self.driver.find_element_by_name("Continue...").click()

self.driver.find_element_by_name(“Single Player”).click()

def tearDown(self):
    "Tear down the test"
    self.driver.quit()

#—START OF SCRIPT
if _ name _ == ‘_ main _’:
suite = unittest.TestLoader().loadTestsFromTestCase(ChessAndroidTests)
unittest.TextTestRunner(verbosity=2).run(suite)

I have connected my device to the notebook…
I get this error output :frowning:

karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13/submodules/sample-code/examples/python$ python android_chess.py
test_single_player_mode1 (main.ChessAndroidTests)
Test the Single Player mode launches correctly … ERROR

======================================================================
ERROR: test_single_player_mode1 (main.ChessAndroidTests)
Test the Single Player mode launches correctly

Traceback (most recent call last):
File “android_chess.py”, line 25, in test_single_player_mode1
self.driver.find_element_by_name(“Continue…”).click()
File “/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py”, line 330, in find_element_by_name
return self.find_element(by=By.NAME, value=name)
File “/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py”, line 712, in find_element
{‘using’: by, ‘value’: value})[‘value’]
File “/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py”, line 201, in execute
self.error_handler.check_response(response)
File “/usr/local/lib/python2.7/dist-packages/appium/webdriver/errorhandler.py”, line 29, in check_response
raise wde
NoSuchElementException: Message: An element could not be located on the page using the given search parameters.


Ran 1 test in 13.961s

FAILED (errors=1)
karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13/submodules/sample-code/examples/python$

Here are the screenshots of the app :

It first successfully clicks on “PLAY!” button, and in the next page it was supposed to click on “Continue…” button.
Am not able to understand, why its giving me error message…!!! (An element could not be located on the page using the given search parameters.)
While Button named “Continue…” is actually present in the app…
Is it trying to find button in the first page itself ??
Help me again…

I’m not too sure about the details of the app you’re testing, but it looks like the screen has to go through some sort of transition after you hit “PLAY!”.

An important aspect of Appium is that it should be treated as a tool to help you build high-level, blackbox test cases. Unlike the Android Espresso framework, it will not perform any synchronization with the application under test, so if the application under test is going through a screen transition or some other operation where UI elements will not be immediately available, there will be a period of time where certain UI elements will not appear.

In your code, after you click on the PLAY! button, you immediately ask Appium to look for an element named “Continue…”. However, note that at this point, the device you’re testing on might not have finished transitioning the screen over and updated the UI hierarchy with the new layout. In this case, Appium rightfully throws a NoSuchElementException, because it did not find a Continue button while the screen is transitioning.

The solution is to add in a wait between clicking on the PLAY button and before searching for the continue button. There are a few methods of waiting when it comes to Selenium tests, but my personal favorite is to use a WebDriverWait. You can use WebDriverWait to check for a certain condition to be true before continuing on. I’m not too well-versed in Python, but there are some common condition checks that are already prepared. They should be listed here; their names should be self-explanatory.

1 Like

Am using this app :

http://www.apkhotel.com/apk/844/

I tried doing this :

def test_single_player_mode1(self):
    "Test the Single Player mode launches correctly"
    element = self.driver.find_element_by_name("PLAY!")
    element.click()

element = WebDriverWait(self.driver, 15).until(EC.presence_of_element_located((By.NAME, “Continue…”)))
element.click()

I am getting this now :

karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13/submodules/sample-code/examples/python$ python android_chess.py
test_single_player_mode1 (main.ChessAndroidTests)
Test the Single Player mode launches correctly … ERROR

======================================================================
ERROR: test_single_player_mode1 (main.ChessAndroidTests)
Test the Single Player mode launches correctly

Traceback (most recent call last):
File “android_chess.py”, line 32, in test_single_player_mode1
element = WebDriverWait(self.driver, 15).until(EC.presence_of_element_located((By.NAME, “Continue…”)))
File “/usr/local/lib/python2.7/dist-packages/selenium/webdriver/support/wait.py”, line 80, in until
raise TimeoutException(message, screen, stacktrace)
TimeoutException: Message:


Ran 1 test in 27.586s

FAILED (errors=1)
karthik@dkarnik2-Vostro-3558:~/appiumworkspace/appium-1.4.13/submodules/sample-code/examples/python$

Can you please try and get the solution for this ??

@afwang
I got it to work… Thanks… Those links which you sent, helped me… Thanks a lot…

resetApp() does not works for iOS :frowning: