gpt4 book ai didi

java - 无法解析 'import org.openqa.selenium.android.AndroidDriver'

转载 作者:行者123 更新时间:2023-11-30 02:51:49 26 4
gpt4 key购买 nike

我正在尝试自动化 android 应用程序,

我已经采取了以下代码,

import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.android.AndroidDriver;

public class LaunchElGiftoAndroid {
public static void main(String args[])throws Exception

{
AndroidDriver ad=new AndroidDriver();
System.out.println("Started");
ad.get("http://www.gmail.com");
System.out.println("Application Title"+ ad.getTitle());
Thread.sleep(2000);
ad.findElement(By.name("Email")).sendKeys("testing");
ad.findElement(By.name("Passwd")).sendKeys("type password");
ad.findElement(By.name("signIn")).click();
System.out.println("Opened");
ad.close();

}

}

我已经正确安装了 Web 驱动程序 apk。

我遇到了以下导入语句的问题。

导入org.openqa.selenium.android.AndroidDriver;

最佳答案

我相信您使用的是旧版 AndroidDriver。

在这种情况下,您应该使用 Selendroid。

http://selendroid.io/mobileWeb.html

关于java - 无法解析 'import org.openqa.selenium.android.AndroidDriver',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24013835/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com