为了账号安全,请及时绑定邮箱和手机立即绑定

Java程序中的“驱动程序无法解析”

Java程序中的“驱动程序无法解析”

饮歌长啸 2022-06-30 11:01:44
我是编程世界的新手,所以我不知道如何解决这个问题。`@Testpublic void LoginEmail() {    driver.findElement(By.id("email_button")).sendKeys("xxxxxxxx@gmail.com");`在 driver.findElement 处,驱动程序带有红色下划线。当我将鼠标悬停在它上面时,这些是我的选择。无法复制选项,所以我截取了屏幕截图:
查看完整描述

2 回答

?
撒科打诨

TA贡献1934条经验 获得超2个赞

你应该先初始化它:


 try {

    WebDriver driver = new AndroidDriver();


    // And now use this to visit Google

    driver.get("http://www.google.com");


    // Find the text input element by its name

    WebElement element = driver.findElement(By.name("q"));


    // Enter something to search for

    element.sendKeys("Cheese!");


    // Now submit the form. WebDriver will find the form for us from the element

    element.submit();


    // Check the title of the page

    System.out.println("Page title is: " + driver.getTitle());

    driver.quit();

  } catch (Exception e) {

    e.printStackTrace();

  }


查看完整回答
反对 回复 2022-06-30
?
鸿蒙传说

TA贡献1865条经验 获得超7个赞

AndroidDriver driver = new AndroidDriver(new URL("localhost:4723/wd/hub"), cap); 这应该是类或本地可访问性。声明为类对象,即在此文本夹具中或在由该类继承的父类中或在本地初始化,即在测试方法中。



查看完整回答
反对 回复 2022-06-30
  • 2 回答
  • 0 关注
  • 183 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信