Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mobile Test Automation with Appium

You're reading from  Mobile Test Automation with Appium

Product type Book
Published in Jun 2017
Publisher Packt
ISBN-13 9781787280168
Pages 256 pages
Edition 1st Edition
Languages
Author (1):
Nishant Verma Nishant Verma
Profile icon Nishant Verma

Running the test in parallel


Let's go back a bit and see what we used in Chapter 4, Understanding Desired Capabilities: the Refactoring -2 section. Here's the code snippet we used:

@Before
public void startAppiumServer() throws IOException {

    int port = 4723;
    String nodeJS_Path = "C:/Program Files/NodeJS/node.exe";
    String appiumJS_Path = "C:/Program 
    Files/Appium/node_modules/appium/bin/appium.js";

    String osName = System.getProperty("os.name");

    if (osName.contains("Mac")) {
        appiumService = AppiumDriverLocalService.buildService(new 
        AppiumServiceBuilder()
                .usingDriverExecutable(new File("/usr/local/bin/node"))
                .withAppiumJS(new File("/usr/local/bin/appium"))
                .withIPAddress("0.0.0.0")
                .usingPort(port)
                .withArgument(GeneralServerFlag.SESSION_OVERRIDE)
                .withLogFile(new File("build/appium.log")));
    } else if (osName.contains("Windows")) {
        appiumService...
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 €14.99/month. Cancel anytime}