sendkey命令不起作用

qc6wkl3g  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(623)

我是新的 selenium 网络驱动程序。我尝试在eclipseide上使用seleniumjava自动登录yahoo邮件。但是,send key命令在密码编辑框中不起作用。

public static void main(String[] args) {

    System.setProperty("webdriver.edge.driver", "D:\\Jav\\msedgedriver.exe");
    WebDriver papa = new EdgeDriver();
    papa.get("https://login.yahoo.com//");
    papa.manage().window().maximize();

    papa.findElement(By.id("login-username")).sendKeys("adcbbb");
    papa.findElement(By.id("login-signin")).click();

    papa.findElement(By.xpath("//*[@id=\'login-passwd\']")).sendKeys("123456");

为什么不起作用,我该怎么解决?

pu3pd22g

pu3pd22g1#

根据您的代码,您有:

papa.findElement(By.id("login-username")).sendKeys("adcbbb");
papa.findElement(By.id("login-signin")).click();

papa.findElement(By.xpath("//*[@id=\'login-passwd\']")).sendKeys("123456");

我现在看到的唯一问题是,必须将值传递给输入字段,然后单击才能登录。所以你的代码应该是这样的:

papa.findElement(By.id("login-username")).sendKeys("adcbbb");
papa.findElement(By.id("login-passwd")).sendKeys("123456");

papa.findElement(By.id("login-signin")).click();

另外,如果您有属性:<id或<name,请首先使用它们,而不是创建xpath

相关问题