Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mobile Test Automation with Appium

You're reading from   Mobile Test Automation with Appium Mobile application testing made easy

Arrow left icon
Product type Paperback
Published in Jun 2017
Publisher Packt
ISBN-13 9781787280168
Length 256 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Nishant Verma Nishant Verma
Author Profile Icon Nishant Verma
Nishant Verma
Arrow right icon
View More author details
Toc

Table of Contents (14) Chapters Close

Server argument


Desired capabilities are sent by the client to the server via JSON objects by requesting the automation session we intend to have. Now, with the preceding code refactor, we can start the Appium server by calling the start() method. This method starts the Appium server assuming the node and appium.js files to be in certain locations and using port 4723. If you have tweaked node.js installation, your Appium install path is not the same, or if you want to start Appium server on different ports, we can use AppiumServiceBuilder to override these inputs:

appiumService = AppiumDriverLocalService.buildService(new AppiumServiceBuilder()
        .usingDriverExecutable(new File(("/path/to/node")))
        .withAppiumJS(new File(("/path/to/appium")))
        .withIPAddress("127.0.0.1")
        .usingPort(port)
        .withArgument(argument)
        .withLogFile(new File("path/to/log/file")));
appiumService.start();

AppiumServiceBuilder also gives you other options to override, which are...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime