Skip to content

Conversation

@mykola-mokhnach
Copy link
Contributor

Types of changes

  • No changes in production code.
  • Bugfix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

@mykola-mokhnach
Copy link
Contributor Author

The failing iOS test is a legitimate xcuitest driver bug: appium/appium#17003

@mykola-mokhnach mykola-mokhnach merged commit 40c22da into appium:master May 29, 2022
@mykola-mokhnach mykola-mokhnach deleted the upd_sel branch May 29, 2022 14:07
@mykola-mokhnach
Copy link
Contributor Author

@SrinivasanTarget Could you please publish 8.1.0 when you have time?

@SrinivasanTarget
Copy link
Member

@SrinivasanTarget Could you please publish 8.1.0 when you have time?

Sure

@n00bstr
Copy link

n00bstr commented May 30, 2022

@SrinivasanTarget I'm facing the "AcceptedW3CCapabilityKeys" issues, can you please publish an update soon? Thank you for everything.

@SrinivasanTarget
Copy link
Member

@SrinivasanTarget I'm facing the "AcceptedW3CCapabilityKeys" issues, can you please publish an update soon? Thank you for everything.

Yes will release it today

@barilki
Copy link

barilki commented May 30, 2022

java.lang.NoClassDefFoundError: org/openqa/selenium/remote/AcceptedW3CCapabilityKeys

at io.appium.java_client.remote.options.BaseOptions.<clinit>(BaseOptions.java:54)
at main.Driver.setup(Driver.kt:32)
at main.ActionsManager.setupDriver(ActionsManager.kt:30)
at tests.BaseTest.beforeTest(BaseTest.kt:49)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:62)
at org.testng.internal.ConfigInvoker.invokeConfigurationMethod(ConfigInvoker.java:385)
at org.testng.internal.ConfigInvoker.invokeConfigurations(ConfigInvoker.java:321)
at org.testng.TestRunner.invokeTestConfigurations(TestRunner.java:637)
at org.testng.TestRunner.beforeRun(TestRunner.java:627)
at org.testng.TestRunner.run(TestRunner.java:589)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:377)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:371)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:332)
at org.testng.SuiteRunner.run(SuiteRunner.java:276)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1212)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1134)
at org.testng.TestNG.runSuites(TestNG.java:1063)
at org.testng.TestNG.run(TestNG.java:1031)
at com.intellij.rt.testng.IDEARemoteTestNG.run(IDEARemoteTestNG.java:66)
at com.intellij.rt.testng.RemoteTestNGStarter.main(RemoteTestNGStarter.java:109)

Caused by: java.lang.ClassNotFoundException: org.openqa.selenium.remote.AcceptedW3CCapabilityKeys
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
... 27 more

Is it related to issue?

@valfirst
Copy link
Collaborator

@barilki yes, check out #1695

@barilki
Copy link

barilki commented May 30, 2022

@barilki yes, check out #1695


4.0.0
io-appium
io-appium
1.0-SNAPSHOT

<properties>
    <kotlin.version>1.6.20-M1</kotlin.version>
</properties>

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<build>
    <plugins>
        <plugin>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-maven-plugin</artifactId>
            <version>${kotlin.version}</version>
            <executions>
                <execution>
                    <id>compile</id>
                    <phase>compile</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
                <execution>
                    <id>test-compile</id>
                    <phase>test-compile</phase>
                    <goals>
                        <goal>test-compile</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <jvmTarget>1.8</jvmTarget>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
                <execution>
                    <id>compile</id>
                    <phase>compile</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
                <execution>
                    <id>testCompile</id>
                    <phase>test-compile</phase>
                    <goals>
                        <goal>testCompile</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <source>11</source>
                <target>11</target>
            </configuration>
        </plugin>
    </plugins>
</build>
<dependencies>
    <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
        <version>3.12.0</version>
    </dependency>
    <dependency>
        <groupId>com.github.vidstige</groupId>
        <artifactId>jadb</artifactId>
        <version>v1.2.1</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/io.appium/java-client -->
    <dependency>
        <groupId>io.appium</groupId>
        <artifactId>java-client</artifactId>
        <version>8.0.0</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>4.2.0</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.testng/testng -->
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>7.4.0</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib-jdk8</artifactId>
        <version>${kotlin.version}</version>
    </dependency>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-test</artifactId>
        <version>${kotlin.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

I'm still getting error

@valfirst
Copy link
Collaborator

the update from this PR is not released yet, please, read comments above carefully

@SrinivasanTarget
Copy link
Member

Java client 8.1.0 is released and should be live in mvn repository in a few minutes :)

@ayushsinghcool
Copy link

@SrinivasanTarget , It is not updated in maven repo. Please find screenshot
7F791B89-C6AD-44FD-9922-1648419C8F18
.

@SrinivasanTarget
Copy link
Member

@Ayush-17 weird, I will have a look at it soon. Thanks for letting me know.

@valfirst
Copy link
Collaborator

@Ayush-17 actually everything is in place: https://repo1.maven.org/maven2/io/appium/java-client/8.1.0/ . I can confirm the release build can be retrieved successfully

@asolntsev
Copy link
Contributor

it's normal, the search engine always is late with indexing the fresh artifacts. Version 8.1.0 will appear in search result with some delay, but you can already use this dependency in your build scripts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants