我有一个场景,根据先前的条件,结果可能是“ this”或“ that”。
例如,如果我希望.contains断言查找foo
或bar
,我将如何写期望?
await t.expect('foo bar').contains('bar')
答案 0 :(得分:0)
另一种方法:
if (await Selector('div').withText('testee@tester.com').exists)
{
console.log("PASS")
}
else if (await Selector('div').withText('testeetwo@tester.com').exists)
{
console.log("PASS")
}
else
{
console.log("FAIL")
}