本文介绍了Appium - 在 PageFactory 获取 java.lang.RuntimeException: java.lang.NoSuchMethodException: jdk.proxy2.$Proxy9.proxyClassLookup()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在运行 Appium 测试时遇到此异常.测试在 PageFactory 失败,但有以下异常.
I am getting this exception on running an Appium test. The test fails at PageFactory with the exception below.
My POM:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0`
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.telepathy.test</groupId>
<artifactId>twitter</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.appium/java-client -->
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>7.2.0</version>
</dependency>
</dependencies>
</project>
- 直到昨天这一切都很好,我的机器重新启动,这个错误开始出现.
- 已尝试使用最新版本的 Appium (7.5.1)
- mvn 是否清理并刷新、更新
在这里失败:PageFactory.initElements(new AppiumFieldDecorator(this.driver), this);
Fails here:PageFactory.initElements(new AppiumFieldDecorator(this.driver), this);
java.lang.RuntimeException: java.lang.NoSuchMethodException:
jdk.proxy2.$Proxy9.proxyClassLookup()
at io.appium.java_client.pagefactory.bys.builder.AppiumByBuilder.prepareAnnotationMethods(
ApiumByBuilder.java:84)
推荐答案
检查您使用的 Java 版本.我从 JDK v16 降级到 v15.0.2 并解决了这个问题.
Check the version of Java you are using. I downgraded from JDK v16 to v15.0.2 and that fixed the problem.
这篇关于Appium - 在 PageFactory 获取 java.lang.RuntimeException: java.lang.NoSuchMethodException: jdk.proxy2.$Proxy9.proxyClassLookup()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!