我是这个论坛的新人,这实际上是我第一次编码
在代码中我有这部分:
md-input-container class="md-default-theme md-input-invalid">
label for="input_4">Email</label>
input name="emailField" type="email" ng-model="email" ng-change="resetValidity()" auto-focus="" validate-email="" required="" class="ng-pristine md-input ng-valid-email ng-invalid ng-invalid-required ng-touched" id="input_4" tabindex="0" aria-required="true" aria-invalid="true" style="">
!-- ngIf: forgot_password.emailField.$invalid && forgot_password.$submitted -->
/md-input-container>
每次我打开 session 时,ID 都会得到不同的数字。 我试试这个:
WebElement emailField = driver.findElement(By.cssSelector("input[name='emailField']"));
emailField.click();
emailField.sendKeys("aa@aa");
也可以通过 URL 访问:“ocloud.optitex.com” 转到“忘记密码”,我正在尝试找到那里的电子邮件字段,单击它并发送 key
但什么也没发生。我收到此错误:
No such Element Exception , unable to locate element.
对于有关如何单击该字段并发送 key 的任何帮助,我将不胜感激。
请您参考如下方法:
在代码中使用隐式等待
,以便有足够的时间通过异常定位到它之前的元素
driver = new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://ocloud.optitex.com/#/login/");
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
driver.findElement(By.xpath("//button/span[contains(.,'Forgot Password?')]")).click();
driver.findElement(By.xpath("//input[@name='emailField']")).sendKeys("abc@gmail.com");
driver.findElement(By.xpath("//button/span[contains(.,'Reset Password')]")).click();