- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我的 webdriver 测试用例中,我必须从 URL 中解析出一个数字(如果不存在,则测试失败),但首先等待我被重定向到包含数字的 URL。例如,当我转到“localhost/#createRecord”时,我将被重定向到“localhost/#editRecord/some-number”
wait.until(ExpectedConditions.urlMatches("#editRecord/([0-9]*)$"));
String url = driver.getCurrentUrl();
Pattern p = Pattern.compile("#editRecord/([0-9]*)$");
Matcher m = p.matcher(url);
int newStudentId=0;
if (m.find()) {
newStudentId = Integer.parseInt(m.group(1));
System.out.println(m.group(1)); // The matched substring
} else fail("There is no ID number in #editRecord page");
在这种情况下,在 wait.until(...) 之后实际上发生了额外的匹配工作经过一番谷歌搜索后,我找到了这种代码变体。成功后立即保存解析结果:
Pattern p = Pattern.compile("#editRecord/([0-9]*)$");
final int[] newStudentId = new int[1]; //declared like this because otherwise we won't be able to assign value to it from lambda expression
try {
wait.until((WebDriver driver) -> {
String url = driver.getCurrentUrl();
Matcher m = p.matcher(url);
if (m.find()) {
newStudentId[0] = Integer.parseInt(m.group(1));
return true;
} else return false;
});
} catch (org.openqa.selenium.TimeoutException e) {
fail("There is no ID number in #editRecord page or we haven't been redirected to #editRecord page");
}
System.out.println(newStudentId[0]);
两个版本都可以工作,但我不确定就可读性(我以前没有使用过 lambda,也不完全理解它)和可靠性而言,哪个版本更好。另外,在第二个选项中捕获超时异常比第一个选项涵盖更多的失败情况
最佳答案
如果你经常等待URL改变,你可以编写自己的方法并多次使用:
public void waitForUrlChange(final WebDriver driver, final String previousUrl, final int waitTime) {
WebDriverWait wait = new WebDriverWait(driver, waitTime);
wait.until((WebDriver d) -> !d.getCurrentUrl().equals(previousUrl));
}
或者等待 URL 更改为给定 URL:
public void waitForUrlToEqual(final WebDriver driver, final String urlToEqual, final int waitTime) {
WebDriverWait wait = new WebDriverWait(driver, waitTime);
wait.until((WebDriver d) -> d.getCurrentUrl().equals(urlToEqual));
}
或者等待 URL 匹配模式:
public void waitForUrlToMatch(final WebDriver driver, final String patternToMatch, final int waitTime) {
WebDriverWait wait = new WebDriverWait(driver, waitTime);
final Pattern pattern = Pattern.compile(patternToMatch);
wait.until((WebDriver d) -> {
Matcher matcher = pattern.matcher(d.getCurrentUrl());
return matcher.find();
});
}
在这些方法中,每 500 毫秒调用一次 ->
之后的部分,直到其计算结果为 true
。如果在 waitTime
内不为 true,则会抛出 TimeoutException
。
您的第一个解决方案...
对比:
"#editRecord/([0-9]*)$"
。您应该声明一个 String
变量并重用它。你的第二个解决方案...
优点:
wait.until
调用与 try-catch block 结合起来即可将其添加到第一个解决方案中。对比:
final
变量。如果没有,我会选择更具描述性的内容,如下所示:
int newStudentId = 0;
String urlPattern = "#editRecord/([0-9]*)$";
String failMessage = "There is no ID number in #editRecord page";
try {
wait.until(ExpectedConditions.urlMatches(urlPattern));
String url = driver.getCurrentUrl();
Pattern p = Pattern.compile(urlPattern);
Matcher m = p.matcher(url);
if (m.find()) {
newStudentId = Integer.parseInt(m.group(1));
System.out.println(newStudentId);
} else {
throw new IndexOutOfBoundsException(failMessage);
}
} catch (org.openqa.selenium.TimeoutException | IndexOutOfBoundsException e) {
fail(failMessage);
}
而且看起来很清楚,多了一个字:
感谢您对 lambda 的澄清...这让我思考!
关于java - 避免使用自定义 WebDriver 谓词进行额外工作的更好方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42234807/
我正在开发一个包含 TreeViewer 的 RCP 应用程序,我想在其上激活多个应与“OR”谓词配合使用的过滤器,例如: A |--B |--|--redColor |--|--blueColor
我的问题是关于 enable_if通常标准库中的谓词,但我将在迭代器类型的上下文中构建它,因为这是我目前遇到此问题的地方。 我有一个自定义迭代器类型 It , 这样 std::iterator_tra
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我需要使用自然数为 2 的幂创建一个 Prolog 谓词。 自然数是:0、s(0)、s(s(0)) 等等。 例如: ?- pow2(s(0),P). P = s(s(0)); false. ?- po
我正在尝试创建一个 NSPredicate 来查找在特定日期范围内包含“ session ”的“项目”。我一开始尝试过这个: [NSPredicate predicateWithFormat:@"AN
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
在JOOQ中,我可以编写如下SQL这样的代码吗? 我不知道如何编写具有多个字段的in谓词。 select some_value from t1 where (t1.id1, t1.id2) i
我正在用 PROLOG 编写一个数独求解器。我希望求解器能够处理所有可能大小的数独,因此我自然需要构造采用可变数量参数的谓词。 (例如在数独中构建“ block ”。) 如何构造或模拟具有可变数量参数
我有一个包含一些 id 的列表,我希望我的 ebean 查询排除这些 id。所以基本上我需要在 ebean 中使用“not in”谓词,就像 sql 一样,但遗憾的是找不到。还有其他方法可以实现这一目
我正在构建一个通用接口(interface)以从类中公开选定的字符串属性,然后我想在每个字段中搜索文本,以检查它是否匹配。 这是我的 IFieldExposer接口(interface): using
我将 Spring Boot 与 Spring JPA 和 Specification Executor 结合使用。我的规范/谓词组合成功地在我的类中搜索了简单的属性。但是,我在搜索其中的对象时遇到了
如果下面的 last_name 为 NULL,它会跳过该列的 WHERE 比较以提高性能吗? AND (last_name IS NULL OR sp.last_name LIKE CONCAT('%
出于好奇:如果我有一个接受多个参数(通常为 1 或 2)并返回 3 个值中的 1 个(而不是 bool 值 true 或 false)的类运算符(或函数等),它是否仍应被调用谓词?还是模糊逻辑的特例?
是否可以创建一个采用装箱值类型并返回该值类型是否等于该类型默认值的方法? 所以我想创建一个具有以下签名的方法: bool IsDefault(object boxedValueType); 注意:当
let selectedConsoles = ["Xbox", "Playstation 4"] let players = realm.objects(Person).filter("console
我正在尝试根据用户搜索文本过滤来自核心数据的结果,但效果很好。我正在努力做到有几个关键术语可以返回特定结果。 我有一个Colour 实体,它与另一个实体ProjectColour 具有对多 关系。 P
std::vector lines; typedef std::vector::iterator iterator_t; iterator_t eventLine = std::find_if(lin
我想在一个列表中找到一个元素的索引,该列表匹配某个谓词,有没有比以下更好的方法: var index = list.IndexOf(list.Find(predicate)); ? 最佳答案 你在找
我正在使用缺少 findall 的高阶 Prolog 变体. 还有一个关于实现我们自己的问题 findall这里:Getting list of solutions in Prolog . 低效的实现
我正在使用 Breeze 过滤客户端请求的数据。我的代码看起来有点像这样: 客户端 - 创建过滤谓词 var predicates = []; var criteriaPredicate = null
我是一名优秀的程序员,十分优秀!