java-client icon indicating copy to clipboard operation
java-client copied to clipboard

Java language binding for writing Appium Tests, conforms to W3C WebDriver Protocol

Results 202 java-client issues
Sort by recently updated
recently updated
newest added

### Do I have the most recent component updates? - [X] I use the most recent available driver/plugin and server versions ### Is the component officially supported by the Appium...

bug
NeedsInfo

## Description In previous versions of Appium, I've been able to collect timings of executed commands. After update to v9, the commands interface no longer contains the name of the...

## Description In 8.5.1 java_client was "AndroidMobileCapabilityType.AUTO_LAUNCH", in java client 9.3.0 UiAutomator2Options there is no such option. Although this is the capability [actual](https://github.com/appium/appium-uiautomator2-driver?tab=readme-ov-file#app) for UiAutomator2-driver. xcuitest driver also [has](https://appium.github.io/appium-xcuitest-driver/6.0/reference/capabilities/#:~:text=b%22%2C%20%22c%22%3A%20%22d%22%20%7D%7D%27-,appium%3AautoLaunch,-When%20set%20to) this...

## Description I'm trying to run a simple test with java maven project, I already have installed winAppDriver, but I'm getting the following Error on WinAppDriver `HTTP/1.1 400 Bad Request...

## Description The links on the [wiki-page of this repository](https://github.com/appium/java-client/wiki) lead to 404-errors I'm new to appium and don't know which commands to use to write ui-tests for an android...

I am using appium 2.11.2 version and node js version is v20.3.1. I am able to run appium server in cmd but not in eclipse console.I am attaching the console...

### Do I have the most recent component updates? - [X] I use the most recent available driver/plugin and server versions ### Is the component officially supported by the Appium...

bug

I'd like to use the @AndroidFindBy annotation for finding elements by view tag on Android, I am specifying a test ID through this attribute as we cannot use resource ids...

Good First Issue

my environment: jdk17.0.12 appium:2.18.0 my pom.xml: io.appium java-client 9.1.0 my code: UiAutomator2Options options = new UiAutomator2Options(); options.setPlatformName("Android"); options.setPlatformVersion("9"); options.setDeviceName("emulator-5554"); options.setAppPackage("com.android.chrome"); options.setAppActivity("com.google.android.apps.chrome.Main"); options.setAutomationName("UiAutomator2"); options.setNoReset(true); options.setChromedriverExecutable("D:\\chromedriver-win64\\chromedriver.exe"); AndroidDriver driver = new AndroidDriver(new URL("http://127.0.0.1:4723"),...