{"id":21944732,"url":"https://github.com/browserstack/jbehave-appium-app-browserstack","last_synced_at":"2026-02-21T13:01:30.116Z","repository":{"id":259787531,"uuid":"844814991","full_name":"browserstack/jbehave-appium-app-browserstack","owner":"browserstack","description":"This repository demonstrates how to run Appium tests in JBehave on BrowserStack App Automate.","archived":false,"fork":false,"pushed_at":"2025-04-04T08:32:24.000Z","size":35329,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-02-10T20:42:30.965Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/browserstack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-20T02:53:05.000Z","updated_at":"2025-04-04T08:32:28.000Z","dependencies_parsed_at":"2024-10-28T01:54:08.270Z","dependency_job_id":"99eab333-1452-4404-8c78-fa90ef67542d","html_url":"https://github.com/browserstack/jbehave-appium-app-browserstack","commit_stats":null,"previous_names":["browserstack/jbehave-appium-app-browserstack"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/browserstack/jbehave-appium-app-browserstack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserstack%2Fjbehave-appium-app-browserstack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserstack%2Fjbehave-appium-app-browserstack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserstack%2Fjbehave-appium-app-browserstack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserstack%2Fjbehave-appium-app-browserstack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/browserstack","download_url":"https://codeload.github.com/browserstack/jbehave-appium-app-browserstack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/browserstack%2Fjbehave-appium-app-browserstack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29681468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T12:30:22.644Z","status":"ssl_error","status_checked_at":"2026-02-21T12:29:55.402Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-29T04:16:59.227Z","updated_at":"2026-02-21T13:01:30.110Z","avatar_url":"https://github.com/browserstack.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jbehave-appium-app-browserstack\nThis repository demonstrates how to run Appium tests in [JBehave](https://github.com/jbehave/jbehave-core) on BrowserStack App Automate.\n\n![BrowserStack Logo](https://d98b8t1nnulk5.cloudfront.net/production/images/layout/logo-header.png?1469004780)\n\n## Setup\n\n### Requirements\n\n1. Java 8+\n\n    - If Java is not installed, follow these instructions:\n        - For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable\n        - 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/)\n\n2. Maven (Only required if using Maven as the build tool)\n   - If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi)\n   - For installation, follow the instructions [here](https://maven.apache.org/install.html)\n\n3. Gradle (Only required if using Gradle as the build tool)\n  - If Gradle is not downloaded, download it from [here](https://gradle.org/releases/)  \n  - For installation, follow the instructions [here](https://gradle.org/install/) \n\n### Install the dependencies\n\nTo install the dependencies for Android tests, run :\n```sh\ncd android/\nmvn clean\n```\n\nOr,\n\nTo install the dependencies for iOS tests, run :\n\n```sh\ncd ios/\nmvn clean\n```\n\n## Getting Started\n\nGetting Started with Appium tests in JBehave on BrowserStack couldn't be easier!\n\n### **Run Sample test :**\n\n- Switch to one of the following directories: [Android examples](android) or [iOS examples](ios)\n- **For Maven:** Run the following command to execute tests in the Maven environment:  \n    ```sh\n    mvn test -P sample-test\n    ```\n- **For Gradle:** Run the following command to execute tests in the Gradle environment:  \n    ```sh\n    gradle clean sampleTest\n    ```\n\n### **Use Local testing for apps that access resources hosted in development or testing environments :**\n\n- Simply configure the `browserstackLocal` parameter in the `browserstack.yml` file accordingly in [Android examples](android) or [iOS examples](ios).\n  ```\n  browserstackLocal: true\n  ```\n- You can use the `LocalSample` app provided in both folder [Android examples](android) or [iOS examples](ios) to run your test. Change the app parameter in the `browserstack.yml` file.\n- **For Maven:** Run the following command to execute tests in the Maven environment:  \n    ```sh\n    mvn test -P sample-local-test\n    ```\n- **For Gradle:** Run the following command to execute tests in the Gradle environment:  \n    ```sh\n    gradle clean sampleLocalTest\n    ```\n\n**Note**: If you are facing any issues, refer [Getting Help section](#Getting-Help)\n\n## Integration with other Java frameworks\n\nFor other Java frameworks samples, refer to following repositories :\n\n- [JUnit](https://github.com/browserstack/junit-appium-app-browserstack)\n- [Java](https://github.com/browserstack/java-appium-app-browserstack)\n\nNote: For other test frameworks supported by App-Automate refer our [Developer documentation](https://www.browserstack.com/docs/)\n\n## Getting Help\n\nIf 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).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrowserstack%2Fjbehave-appium-app-browserstack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrowserstack%2Fjbehave-appium-app-browserstack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrowserstack%2Fjbehave-appium-app-browserstack/lists"}