diff --git a/README.md b/README.md index 772c5e5..ef3660d 100644 --- a/README.md +++ b/README.md @@ -1,172 +1,2 @@ -# java-appium-app-browserstack - -This repository demonstrates how to run Appium Java tests on BrowserStack App Automate. - -## Setup - -### Requirements - -1. Java 8+ - -- If Java is not installed, follow these instructions: - - For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable - - For Mac and Linux, run `java -version` to see what java version is pre-installed. If you want a different version download from [here](https://java.com/en/download/) - -2. Maven - - - If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi) - - For installation, follow the instructions [here](https://maven.apache.org/install.html) - -### Install the dependencies - -To install the dependencies, run the following command in the project's base folder - -```cmd -mvn clean install -``` - -## Getting Started - -Getting Started with Appium tests in Java on BrowserStack couldn't be easier! - -### For java-client 8.0.0 and above - -- Any BrowserStack capability passed outside bstack:options will not be honoured \ -[Browserstack Capability Builder](https://www.browserstack.com/app-automate/capabilities?tag=w3c) - -- AppiumBy is available with java-client 8.0.0 as MobileBy is depreceated . For java-client < 8.0.0, MobileBy can be used. - -- DefaultGenericMobileElement class has been removed completely together with its descendants (MobileElement, IOSElement, AndroidElement etc.). Use WebElement instead. - -- WebDriverWait constructor requires time to be passed as a type Duration. So with java-client 8.0.0, pass wait time as a new Duration - **java-client v-7.0.0** - ``` - WebElement searchElement = (WebElement) new WebDriverWait(driver, 30) - ``` - - **java-client v-8.0.0** - ``` - import java.time.Duration; - WebElement searchElement = (WebElement) new WebDriverWait(driver, Duration.ofSeconds(30)) - ``` - - Refer this for tracking changes in java-client 8.0.0 documentation - [v7-to-v8-migration-guide](https://github.com/appium/java-client/blob/master/docs/v7-to-v8-migration-guide.md#mobileelement) - -### Run your first test : - -**1. Upload your Android or iOS App** - -Upload your Android app (.apk or .aab file) or iOS app (.ipa file) to BrowserStack servers using our REST API. Here is an example cURL request : - -``` -curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ --X POST "https://api-cloud.browserstack.com/app-automate/upload" \ --F "file=@/path/to/apk/file" -``` - -Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. - -**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android app](https://www.browserstack.com/app-automate/sample-apps/android/WikipediaSample.apk) or [sample iOS app](https://www.browserstack.com/app-automate/sample-apps/ios/BStackSampleApp.ipa). - -**2. Configure and run your first test** - -Open `BrowserStackSample.java` file in the `android` directory or `ios` directory : - -- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) - -- Replace `bs://` with the URL obtained from app upload step - -- Set the device and OS version - -- If you have uploaded your own app update the test case - -- To run the test, use the following command in the base directory : - - - For Android test, run - - ```cmd - mvn test -P android-first-test - ``` - - - For iOS test, run - - ```cmd - mvn test -P ios-first-test - ``` - -- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) - ---- - -### Use Local testing for apps that access resources hosted in development or testing environments : - -**1. Upoad your Android or iOS App** - -Upload your Android app (.apk or .aab file) or iOS app (.ipa file) that access resources hosted on your internal or test environments to BrowserStack servers using our REST API. Here is an example cURL request : - -``` -curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ --X POST "https://api-cloud.browserstack.com/app-automate/upload" \ --F "file=@/path/to/apk/file" -``` - -Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. - -**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android Local app](https://www.browserstack.com/app-automate/sample-apps/android/LocalSample.apk) or [sample iOS Local app](https://www.browserstack.com/app-automate/sample-apps/ios/LocalSample.ipa). - -**2. Configure and run your local test** - -Local Testing is a BrowserStack feature that helps you test mobile apps that access resources hosted in development or testing environments during automated test execution - -**i. Setup Browserstack Local Testing connection :** - -Check the releases page to download the binary / native application [Browserstack Local Releases](https://www.browserstack.com/docs/local-testing/releases-and-downloads) - -- Option 1 - - Use Browserstack Local Binary - [Local Binary](https://www.browserstack.com/docs/app-automate/appium/getting-started/java/local-testing) -- Option 2 - - Use Browserstack native application - [Local Native App](https://www.browserstack.com/docs/local-testing/local-app-upgrade-guide) - - -NOTE : If you're unable to run the LocalTesting Binary / Native application due to Apple permission issues, go to \ - ``` - System preferences -> Security and privacy -> General -> Allow app - ``` - -**ii. Open `BrowserStackSampleLocal.java` file in the `android` or `ios` directory :** - -- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) - -- Replace `bs://` with the URL obtained from app upload step - -- Set the device and OS version - -- Ensure that `browserstack.local` capability is set to `true`. Within the test script, there is code snippet that automatically establishes Local Testing connection to BrowserStack servers using Java binding for BrowserStack Local. - -- If you have uploaded your own app update the test case - -- To run the test, use the following command in the base directory : - - - For Android test, run - - ```cmd - mvn test -P android-local-test - ``` - - - For iOS test, run - - ```cmd - mvn test -P ios-local-test - ``` - -- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) - - -## Integration with other Java frameworks - -- [JUnit](https://github.com/browserstack/junit-appium-app-browserstack) -- [TestNg](https://github.com/browserstack/testng-appium-app-browserstack) - -## Getting Help - -If you are running into any issues or have any queries, please check [Browserstack Support page](https://www.browserstack.com/support/app-automate) or [get in touch with us](https://www.browserstack.com/contact?ref=help). +| [Using Java 7 client with MJSONWP protocol](./java_7) | [Using Java 8 client with w3c protocol](./java_8) | +|------------------------------------------------------ | ------------------------------------------------- | \ No newline at end of file diff --git a/java_7/README.md b/java_7/README.md new file mode 100644 index 0000000..91d90d7 --- /dev/null +++ b/java_7/README.md @@ -0,0 +1,135 @@ +| Using Java 7 client with MJSONWP protocol | [Using Java 8 client with w3c protocol](../java_8) | +|------------------------------------------ | -------------------------------------------------- | + +# java-appium-app-browserstack + +This repository demonstrates how to run Appium Java tests on BrowserStack App Automate. + +## Setup + +### Requirements + +1. Java 8+ (JDK) + +- If Java is not installed, follow these instructions: + - For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable + - For Mac and Linux, run `java -version` to see what java version is pre-installed. If you want a different version download from [here](https://java.com/en/download/) + +2. Maven + + - If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi) + - For installation, follow the instructions [here](https://maven.apache.org/install.html) + +### Install the dependencies + +To install the dependencies, run the following command in the project's base folder + +```cmd +mvn clean install +``` + +## Getting Started + +Getting Started with Appium tests in Java on BrowserStack couldn't be easier! + +### Run your first test : + +**1. Upload your Android or iOS App** + +Upload your Android app (.apk or .aab file) or iOS app (.ipa file) to BrowserStack servers using our REST API. Here is an example cURL request : + +``` +curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ +-X POST "https://api-cloud.browserstack.com/app-automate/upload" \ +-F "file=@/path/to/apk/file" +``` + +Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. + +**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android app](https://www.browserstack.com/app-automate/sample-apps/android/WikipediaSample.apk) or [sample iOS app](https://www.browserstack.com/app-automate/sample-apps/ios/BStackSampleApp.ipa). + +**2. Configure and run your first test** + +Open `BrowserStackSample.java` file in the `android` directory or `ios` directory : + +- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) + +- Replace `bs://` with the URL obtained from app upload step + +- Set the device and OS version + +- If you have uploaded your own app update the test case + +- To run the test, use the following command in the base directory : + + - For Android test, run + + ```cmd + mvn test -P android-first-test + ``` + + - For iOS test, run + + ```cmd + mvn test -P ios-first-test + ``` + +- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) + +--- + +### Use Local testing for apps that access resources hosted in development or testing environments : + +**1. Upoad your Android or iOS App** + +Upload your Android app (.apk or .aab file) or iOS app (.ipa file) that access resources hosted on your internal or test environments to BrowserStack servers using our REST API. Here is an example cURL request : + +``` +curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ +-X POST "https://api-cloud.browserstack.com/app-automate/upload" \ +-F "file=@/path/to/apk/file" +``` + +Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. + +**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android Local app](https://www.browserstack.com/app-automate/sample-apps/android/LocalSample.apk) or [sample iOS Local app](https://www.browserstack.com/app-automate/sample-apps/ios/LocalSample.ipa). + +**2. Configure and run your local test** + +Open `BrowserStackSampleLocal.java` file in the `android` or `ios` directory : + +- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) + +- Replace `bs://` with the URL obtained from app upload step + +- Set the device and OS version + +- Ensure that `browserstack.local` capability is set to `true`. Within the test script, there is code snippet that automatically establishes Local Testing connection to BrowserStack servers using Java binding for BrowserStack Local. + +- If you have uploaded your own app update the test case + +- To run the test, use the following command in the base directory : + + - For Android test, run + + ```cmd + mvn test -P android-local-test + ``` + + - For iOS test, run + + ```cmd + mvn test -P ios-local-test + ``` + +- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) + + +## Integration with other Java frameworks + +- [JUnit](https://github.com/browserstack/junit-appium-app-browserstack) +- [TestNg](https://github.com/browserstack/testng-appium-app-browserstack) + +## Getting Help + +If you are running into any issues or have any queries, please check [Browserstack Support page](https://www.browserstack.com/support/app-automate) or [get in touch with us](https://www.browserstack.com/contact?ref=help). diff --git a/java_7/pom.xml b/java_7/pom.xml new file mode 100644 index 0000000..74fc8bd --- /dev/null +++ b/java_7/pom.xml @@ -0,0 +1,160 @@ + + 4.0.0 + com.browserstack + java-browserstack + 0.0.1-SNAPSHOT + java-browserstack + Java appium app browserstack + + + UTF-8 + 2.19.1 + + default + + + + + + commons-io + commons-io + 1.3.2 + + + io.appium + java-client + 7.0.0 + + + com.browserstack + browserstack-local-java + 1.0.3 + + + com.googlecode.json-simple + json-simple + 1.1.1 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + + + + + + android-first-test + + + + org.codehaus.mojo + exec-maven-plugin + 1.1.1 + + + test + + java + + + android.BrowserStackSample + test + + + + + + + + + android-local-test + + + + org.codehaus.mojo + exec-maven-plugin + 1.1.1 + + + test + + java + + + android.BrowserStackSampleLocal + test + + + + + + + + + ios-first-test + + + + org.codehaus.mojo + exec-maven-plugin + 1.1.1 + + + test + + java + + + ios.BrowserStackSample + test + + + + + + + + + ios-local-test + + + + org.codehaus.mojo + exec-maven-plugin + 1.1.1 + + + test + + java + + + ios.BrowserStackSampleLocal + test + + + + + + + + + + \ No newline at end of file diff --git a/java_7/src/test/java/android/BrowserStackSample.java b/java_7/src/test/java/android/BrowserStackSample.java new file mode 100644 index 0000000..136ee81 --- /dev/null +++ b/java_7/src/test/java/android/BrowserStackSample.java @@ -0,0 +1,68 @@ +package android; + +import java.net.URL; +import java.util.List; +import java.util.function.Function; +import java.net.MalformedURLException; + +import io.appium.java_client.MobileBy; +import io.appium.java_client.android.AndroidDriver; +import io.appium.java_client.android.AndroidElement; + +import org.openqa.selenium.support.ui.ExpectedConditions; +import org.openqa.selenium.support.ui.WebDriverWait; +import org.openqa.selenium.WebDriver; +import org.openqa.selenium.remote.DesiredCapabilities; + + +public class BrowserStackSample { + + public static void main(String[] args) throws MalformedURLException, InterruptedException { + + DesiredCapabilities caps = new DesiredCapabilities(); + + // Set your access credentials + caps.setCapability("browserstack.user", "YOUR_USERNAME"); + caps.setCapability("browserstack.key", "YOUR_ACCESS_KEY"); + + // Set URL of the application under test + caps.setCapability("app", "bs://"); + + // Specify device and os_version for testing + caps.setCapability("device", "Google Pixel 3"); + caps.setCapability("os_version", "9.0"); + + // Set other BrowserStack capabilities + caps.setCapability("project", "First Java Project"); + caps.setCapability("build", "browserstack-build-1"); + caps.setCapability("name", "first_test"); + + + // Initialise the remote Webdriver using BrowserStack remote URL + // and desired capabilities defined above + AndroidDriver driver = new AndroidDriver( + new URL("http://hub.browserstack.com/wd/hub"), caps); + + + // Test case for the BrowserStack sample Android app. + // If you have uploaded your app, update the test case here. + AndroidElement searchElement = (AndroidElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable( + MobileBy.AccessibilityId("Search Wikipedia"))); + searchElement.click(); + AndroidElement insertTextElement = (AndroidElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable( + MobileBy.id("org.wikipedia.alpha:id/search_src_text"))); + insertTextElement.sendKeys("BrowserStack"); + Thread.sleep(5000); + List allProductsName = driver.findElementsByClassName( + "android.widget.TextView"); + assert(allProductsName.size() > 0); + + + // Invoke driver.quit() after the test is done to indicate that the test is completed. + driver.quit(); + + } + +} diff --git a/java_7/src/test/java/android/BrowserStackSampleLocal.java b/java_7/src/test/java/android/BrowserStackSampleLocal.java new file mode 100644 index 0000000..0854db1 --- /dev/null +++ b/java_7/src/test/java/android/BrowserStackSampleLocal.java @@ -0,0 +1,90 @@ +package android; + +import com.browserstack.local.Local; +import java.net.URL; import java.util.*; +import io.appium.java_client.MobileBy; import io.appium.java_client.android.*; +import org.openqa.selenium.support.ui.*;import org.openqa.selenium.remote.*; + +public class BrowserStackSampleLocal { + + private static Local localInstance; + public static String userName = "YOUR_USERNAME"; + public static String accessKey = "YOUR_ACCESS_KEY"; + + + public static void setupLocal() throws Exception { + localInstance = new Local(); + Map options = new HashMap(); + options.put("key", accessKey); + localInstance.start(options); + } + + public static void tearDownLocal() throws Exception { + localInstance.stop(); + } + + public static void main(String[] args) throws Exception { + // Start the BrowserStack Local binary + setupLocal(); + + DesiredCapabilities capabilities = new DesiredCapabilities(); + + // Set your access credentials + capabilities.setCapability("browserstack.user", userName); + capabilities.setCapability("browserstack.key", accessKey); + + // Set URL of the application under test + capabilities.setCapability("app", "bs://"); + + // Specify device and os_version for testing + capabilities.setCapability("device", "Google Pixel 3"); + capabilities.setCapability("os_version", "9.0"); + + // Set the browserstack.local capability to true + capabilities.setCapability("browserstack.local", true); + + // Set other BrowserStack capabilities + capabilities.setCapability("project", "First Java Project"); + capabilities.setCapability("build", "browserstack-build-1"); + capabilities.setCapability("name", "local_test"); + + + // Initialise the remote Webdriver using BrowserStack remote URL + // and desired capabilities defined above + AndroidDriver driver = new AndroidDriver( + new URL("http://hub.browserstack.com/wd/hub"), capabilities); + + // Test case for the BrowserStack sample Android Local app. + // If you have uploaded your app, update the test case here. + AndroidElement searchElement = (AndroidElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.id("com.example.android.basicnetworking:id/test_action"))); + searchElement.click(); + AndroidElement insertTextElement = (AndroidElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.className("android.widget.TextView"))); + + AndroidElement testElement = null; + List allTextViewElements = driver.findElementsByClassName("android.widget.TextView"); + Thread.sleep(10); + for(AndroidElement textElement : allTextViewElements) { + if(textElement.getText().contains("The active connection is")) { + testElement = textElement; + } + } + + if(testElement == null) { + throw new Error("Cannot find the needed TextView element from app"); + } + String matchedString = testElement.getText(); + System.out.println(matchedString); + assert(matchedString.contains("The active connection is wifi")); + assert(matchedString.contains("Up and running")); + + // Invoke driver.quit() after the test is done to indicate that the test is completed. + driver.quit(); + + // Stop the BrowserStack Local binary + tearDownLocal(); + + } + +} diff --git a/java_7/src/test/java/ios/BrowserStackSample.java b/java_7/src/test/java/ios/BrowserStackSample.java new file mode 100644 index 0000000..ce5ab08 --- /dev/null +++ b/java_7/src/test/java/ios/BrowserStackSample.java @@ -0,0 +1,64 @@ +package ios; + +import java.net.URL; +import java.util.List; +import java.net.MalformedURLException; + +import org.openqa.selenium.support.ui.WebDriverWait; +import org.openqa.selenium.remote.DesiredCapabilities; +import org.openqa.selenium.support.ui.ExpectedConditions; + +import io.appium.java_client.MobileBy; +import io.appium.java_client.ios.IOSDriver; +import io.appium.java_client.ios.IOSElement; + +public class BrowserStackSample { + + public static void main(String[] args) throws MalformedURLException, InterruptedException { + DesiredCapabilities caps = new DesiredCapabilities(); + + // Set your access credentials + caps.setCapability("browserstack.user", "YOUR_USERNAME"); + caps.setCapability("browserstack.key", "YOUR_ACCESS_KEY"); + + // Set URL of the application under test + caps.setCapability("app", "bs://"); + + // Specify device and os_version for testing + caps.setCapability("device", "iPhone 12"); + caps.setCapability("os_version", "13"); + + // Set other BrowserStack capabilities + caps.setCapability("project", "First Java Project"); + caps.setCapability("build", "browserstack-build-1"); + caps.setCapability("name", "first_test"); + + + // Initialise the remote Webdriver using BrowserStack remote URL + // and desired capabilities defined above + IOSDriver driver = new IOSDriver( + new URL("http://hub-cloud.browserstack.com/wd/hub"), caps); + + + // Test case for the BrowserStack sample iOS app. + // If you have uploaded your app, update the test case here. + IOSElement textButton = (IOSElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.AccessibilityId("Text Button"))); + textButton.click(); + IOSElement textInput = (IOSElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.AccessibilityId("Text Input"))); + textInput.sendKeys("hello@browserstack.com"); + Thread.sleep(5000); + IOSElement textOutput = (IOSElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.AccessibilityId("Text Output"))); + if(textOutput != null && textOutput.getText().equals("hello@browserstack.com")) + assert(true); + else + assert(false); + + // Invoke driver.quit() after the test is done to indicate that the test is completed. + driver.quit(); + + } + +} diff --git a/java_7/src/test/java/ios/BrowserStackSampleLocal.java b/java_7/src/test/java/ios/BrowserStackSampleLocal.java new file mode 100644 index 0000000..a4af409 --- /dev/null +++ b/java_7/src/test/java/ios/BrowserStackSampleLocal.java @@ -0,0 +1,95 @@ +package ios; + +import com.browserstack.local.Local; +import java.net.URL; import java.io.File; import java.util.*; +import org.apache.commons.io.FileUtils; +import io.appium.java_client.MobileBy; import io.appium.java_client.ios.*; +import org.openqa.selenium.*; +import org.openqa.selenium.support.ui.*;import org.openqa.selenium.remote.*; + +public class BrowserStackSampleLocal { + + private static Local localInstance; + public static String userName = "YOUR_USERNAME"; + public static String accessKey = "YOUR_ACCESS_KEY"; + + + public static void setupLocal() throws Exception { + localInstance = new Local(); + Map options = new HashMap(); + options.put("key", accessKey); + localInstance.start(options); + } + + public static void tearDownLocal() throws Exception { + localInstance.stop(); + } + + + public static void main(String[] args) throws Exception { + // Start the BrowserStack Local binary + setupLocal(); + + DesiredCapabilities capabilities = new DesiredCapabilities(); + + // Set your access credentials + capabilities.setCapability("browserstack.user", userName); + capabilities.setCapability("browserstack.key", accessKey); + + // Set URL of the application under test + capabilities.setCapability("app", "bs://"); + + // Specify device and os_version for testing + capabilities.setCapability("device", "iPhone 12"); + capabilities.setCapability("os_version", "13"); + + // Set the browserstack.local capability to true + capabilities.setCapability("browserstack.local", true); + + // Set other BrowserStack capabilities + capabilities.setCapability("project", "First Java Project"); + capabilities.setCapability("build", "browserstack-build-1"); + capabilities.setCapability("name", "local_test"); + + // Initialise the remote Webdriver using BrowserStack remote URL + // and desired capabilities defined above + IOSDriver driver = new IOSDriver( + new URL("http://hub.browserstack.com/wd/hub"), capabilities); + + // Test case for the BrowserStack sample iOS Local app. + // If you have uploaded your app, update the test case here. + IOSElement testButton = (IOSElement) new WebDriverWait(driver, 30).until( + ExpectedConditions.elementToBeClickable(MobileBy.AccessibilityId("TestBrowserStackLocal"))); + testButton.click(); + + WebDriverWait wait = new WebDriverWait(driver, 30); + wait.until(new ExpectedCondition() { + @Override + public Boolean apply(WebDriver d) { + String result = d.findElement(MobileBy.AccessibilityId("ResultBrowserStackLocal")).getAttribute("value"); + return result != null && result.length() > 0; + } + }); + IOSElement resultElement = (IOSElement) driver.findElement(MobileBy.AccessibilityId("ResultBrowserStackLocal")); + + String resultString = resultElement.getText().toLowerCase(); + System.out.println(resultString); + if(resultString.contains("not working")) { + File scrFile = (File) ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); + FileUtils.copyFile(scrFile, new File(System.getProperty("user.dir") + "/screenshot.png")); + System.out.println("Screenshot stored at " + System.getProperty("user.dir") + "/screenshot.png"); + throw new Error("Unexpected BrowserStackLocal test result"); + } + + String expectedString = "Up and running"; + assert(resultString.contains(expectedString.toLowerCase())); + + // Invoke driver.quit() after the test is done to indicate that the test is completed. + driver.quit(); + + // Stop the BrowserStack Local binary + tearDownLocal(); + + } + +} diff --git a/java_8/README.md b/java_8/README.md new file mode 100644 index 0000000..4afdc79 --- /dev/null +++ b/java_8/README.md @@ -0,0 +1,175 @@ +| [Using Java 7 client with MJSONWP protocol](../java_7) | Using Java 8 client with w3c protocol | +|------------------------------------------------------- | ------------------------------------- | + +# java-appium-app-browserstack + +This repository demonstrates how to run Appium Java tests on BrowserStack App Automate. + +## Setup + +### Requirements + +1. Java 8+ (JDK) + +- If Java is not installed, follow these instructions: + - For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable + - For Mac and Linux, run `java -version` to see what java version is pre-installed. If you want a different version download from [here](https://java.com/en/download/) + +2. Maven + + - If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi) + - For installation, follow the instructions [here](https://maven.apache.org/install.html) + +### Install the dependencies + +To install the dependencies, run the following command in the project's base folder + +```cmd +mvn clean install +``` + +## Getting Started + +Getting Started with Appium tests in Java on BrowserStack couldn't be easier! + +### For java-client 8.0.0 and above + +- Any BrowserStack capability passed outside bstack:options will not be honoured \ +[Browserstack Capability Builder](https://www.browserstack.com/app-automate/capabilities?tag=w3c) + +- AppiumBy is available with java-client 8.0.0 as MobileBy is depreceated . For java-client < 8.0.0, MobileBy can be used. + +- DefaultGenericMobileElement class has been removed completely together with its descendants (MobileElement, IOSElement, AndroidElement etc.). Use WebElement instead. + +- WebDriverWait constructor requires time to be passed as a type Duration. So with java-client 8.0.0, pass wait time as a new Duration + **java-client v-7.0.0** + ``` + WebElement searchElement = (WebElement) new WebDriverWait(driver, 30) + ``` + + **java-client v-8.0.0** + ``` + import java.time.Duration; + WebElement searchElement = (WebElement) new WebDriverWait(driver, Duration.ofSeconds(30)) + ``` + + Refer this for tracking changes in java-client 8.0.0 documentation - [v7-to-v8-migration-guide](https://github.com/appium/java-client/blob/master/docs/v7-to-v8-migration-guide.md#mobileelement) + +### Run your first test : + +**1. Upload your Android or iOS App** + +Upload your Android app (.apk or .aab file) or iOS app (.ipa file) to BrowserStack servers using our REST API. Here is an example cURL request : + +``` +curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ +-X POST "https://api-cloud.browserstack.com/app-automate/upload" \ +-F "file=@/path/to/apk/file" +``` + +Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. + +**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android app](https://www.browserstack.com/app-automate/sample-apps/android/WikipediaSample.apk) or [sample iOS app](https://www.browserstack.com/app-automate/sample-apps/ios/BStackSampleApp.ipa). + +**2. Configure and run your first test** + +Open `BrowserStackSample.java` file in the `android` directory or `ios` directory : + +- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) + +- Replace `bs://` with the URL obtained from app upload step + +- Set the device and OS version + +- If you have uploaded your own app update the test case + +- To run the test, use the following command in the base directory : + + - For Android test, run + + ```cmd + mvn test -P android-first-test + ``` + + - For iOS test, run + + ```cmd + mvn test -P ios-first-test + ``` + +- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) + +--- + +### Use Local testing for apps that access resources hosted in development or testing environments : + +**1. Upoad your Android or iOS App** + +Upload your Android app (.apk or .aab file) or iOS app (.ipa file) that access resources hosted on your internal or test environments to BrowserStack servers using our REST API. Here is an example cURL request : + +``` +curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \ +-X POST "https://api-cloud.browserstack.com/app-automate/upload" \ +-F "file=@/path/to/apk/file" +``` + +Ensure that @ symbol is prepended to the file path in the above request. Please note the `app_url` value returned in the API response. We will use this to set the application under test while configuring the test later on. + +**Note**: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our [sample Android Local app](https://www.browserstack.com/app-automate/sample-apps/android/LocalSample.apk) or [sample iOS Local app](https://www.browserstack.com/app-automate/sample-apps/ios/LocalSample.ipa). + +**2. Configure and run your local test** + +Local Testing is a BrowserStack feature that helps you test mobile apps that access resources hosted in development or testing environments during automated test execution + +**i. Setup Browserstack Local Testing connection :** + +Check the releases page to download the binary / native application [Browserstack Local Releases](https://www.browserstack.com/docs/local-testing/releases-and-downloads) + +- Option 1 + - Use Browserstack Local Binary - [Local Binary](https://www.browserstack.com/docs/app-automate/appium/getting-started/java/local-testing) +- Option 2 + - Use Browserstack native application - [Local Native App](https://www.browserstack.com/docs/local-testing/local-app-upgrade-guide) + + +NOTE : If you're unable to run the LocalTesting Binary / Native application due to Apple permission issues, go to \ + ``` + System preferences -> Security and privacy -> General -> Allow app + ``` + +**ii. Open `BrowserStackSampleLocal.java` file in the `android` or `ios` directory :** + +- Replace `YOUR_USERNAME` & `YOUR_ACCESS_KEY` with your BrowserStack access credentials. Get your BrowserStack access credentials from [here](https://www.browserstack.com/accounts/settings) + +- Replace `bs://` with the URL obtained from app upload step + +- Set the device and OS version + +- Ensure that `browserstack.local` capability is set to `true`. Within the test script, there is code snippet that automatically establishes Local Testing connection to BrowserStack servers using Java binding for BrowserStack Local. + +- If you have uploaded your own app update the test case + +- To run the test, use the following command in the base directory : + + - For Android test, run + + ```cmd + mvn test -P android-local-test + ``` + + - For iOS test, run + + ```cmd + mvn test -P ios-local-test + ``` + +- You can access the test execution results, and debugging information such as video recording, network logs on [App Automate dashboard](https://app-automate.browserstack.com/dashboard) + + +## Integration with other Java frameworks + +- [JUnit](https://github.com/browserstack/junit-appium-app-browserstack) +- [TestNg](https://github.com/browserstack/testng-appium-app-browserstack) + +## Getting Help + +If you are running into any issues or have any queries, please check [Browserstack Support page](https://www.browserstack.com/support/app-automate) or [get in touch with us](https://www.browserstack.com/contact?ref=help). diff --git a/pom.xml b/java_8/pom.xml similarity index 100% rename from pom.xml rename to java_8/pom.xml diff --git a/src/test/java/android/BrowserStackSample.java b/java_8/src/test/java/android/BrowserStackSample.java similarity index 100% rename from src/test/java/android/BrowserStackSample.java rename to java_8/src/test/java/android/BrowserStackSample.java diff --git a/src/test/java/android/BrowserStackSampleLocal.java b/java_8/src/test/java/android/BrowserStackSampleLocal.java similarity index 100% rename from src/test/java/android/BrowserStackSampleLocal.java rename to java_8/src/test/java/android/BrowserStackSampleLocal.java diff --git a/src/test/java/ios/BrowserStackSample.java b/java_8/src/test/java/ios/BrowserStackSample.java similarity index 98% rename from src/test/java/ios/BrowserStackSample.java rename to java_8/src/test/java/ios/BrowserStackSample.java index 3b5f864..09d2013 100644 --- a/src/test/java/ios/BrowserStackSample.java +++ b/java_8/src/test/java/ios/BrowserStackSample.java @@ -35,7 +35,7 @@ public static void main(String[] args) caps.setCapability("app", "bs://"); // Specify device and os_version for testing - caps.setCapability("deviceName", "iPhone 11 Pro"); + caps.setCapability("deviceName", "iPhone 12"); caps.setCapability("platformName", "ios"); caps.setCapability("platformVersion", "13"); diff --git a/src/test/java/ios/BrowserStackSampleLocal.java b/java_8/src/test/java/ios/BrowserStackSampleLocal.java similarity index 98% rename from src/test/java/ios/BrowserStackSampleLocal.java rename to java_8/src/test/java/ios/BrowserStackSampleLocal.java index 5ebf5a0..0493d13 100644 --- a/src/test/java/ios/BrowserStackSampleLocal.java +++ b/java_8/src/test/java/ios/BrowserStackSampleLocal.java @@ -59,7 +59,7 @@ public static void main(String[] args) throws Exception { capabilities.setCapability("app", "bs://"); // Specify device and os_version for testing - capabilities.setCapability("deviceName", "iPhone 11 Pro"); + capabilities.setCapability("deviceName", "iPhone 12"); capabilities.setCapability("platformName", "ios"); capabilities.setCapability("platformVersion", "13");