我正在使用 Selenium 对 Angular/C# 应用程序进行 E2E 测试。
我想用 Selenium 填写有角度的材料形式。
有 2 个表单域:date1 和 date2
Date1 工作正常:我清除该字段并填写新日期:
public void Wait(IWebDriver _webDriver, string elementString)
{
WebDriverWait wait = new WebDriverWait(_webDriver, TimeSpan.FromSeconds(5));
IWebElement element = wait.Until(ExpectedConditions.ElementIsVisible(By.Id(elementString) ));
}
public void Test()
{
Wait(_webDriver, "date1");
for (int i = 0; i < 15; i++) {
webDriver.FindElement(By.Id("date1")).SendKeys(Keys.Backspace);
}
webDriver.FindElement(By.Id("date1")).SendKeys(DateTime.Now.AddDays(1).ToString("d"));
}
HTML 代码:
<mat-form-field class="half-width-field">
<mat-label> date1</mat-label>
<input matInput class="form-control"
formControlName="date1"
id=date1
matInput [matDatepicker]="pickerEnd"
placeholder="MM/DD/YYYY">
<mat-datepicker-toggle matSuffix [for]="pickerEnd"></mat-datepicker-toggle>
<mat-datepicker #pickerEnd></mat-datepicker>
<mat-error *ngIf="updateProductForm.controls.date1.hasError('required')">
date1 is required
</mat-error>
<mat-error *ngIf="updateProductForm.controls.date1.hasError('mismatch')">
date1 must before due
</mat-error>
</mat-form-field>
<mat-form-field class="half-width-field">
<mat-label> date2 </mat-label>
<input matInput class="form-control"
formControlName="date2"
id=date2
matInput [matDatepicker]="pickerStart"
placeholder="MM/DD/YYYY">
<mat-datepicker-toggle matSuffix [for]="pickerStart"></mat-datepicker-toggle>
<mat-datepicker #pickerEnd></mat-datepicker>
<mat-error *ngIf="updateProductForm.controls.date2.hasError('required')">
date2 is required
</mat-error>
<mat-error *ngIf="updateProductForm.controls.date2.hasError('mismatch')">
date2 must before due
</mat-error>
</mat-form-field>
当我尝试使用 date2 执行此操作时,出现NotInteractable
异常。
我使用等待直到可见(并尝试过可点击和延迟 10 秒。
webDriver.FindElement(By.Id("date2")).Displayed
结果是真的吗?
出了什么问题?