我已经开始在 Android 中构建我的第一个 Appium 测试,为此,我开始编写我的代码。
我实例化了我的DesiredCapabilities
对象,但是当我尝试使用该引用时,我看不到该引用。
该问题的图片链接:
以下是为我的项目添加的依赖项:
<dependencies>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.13.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.appium/java-client -->
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>6.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
</dependencies>
请帮助我缺少什么,以帮助继续进行编码。是否有任何我需要关联的罐子被遗漏?