我正在尝试在编辑表格中的项目后等待成功祝酒。
硒似乎没有考虑我提供给等待功能的超时时间。
我错过了什么?当我只需要~7秒时,我不应该提供一个可笑的高数字(有时只能工作)来使这个工作。
driver.wait(until.elementIsVisible(driver.findElement(By.className('alert-success'))), 999999999999999999999999999999999999999999999999).then(function () {
return driver.findElement(By.className('table-striped')).getText().then(function (text) {
expect(tableState).toNotEqual(text);
done();
driver.quit();
});
});