有没有办法在testcafe中链接断言?

时间:2019-04-10 15:50:18

标签: automated-tests e2e-testing assertion web-testing testcafe

我有一个场景,根据先前的条件,结果可能是“ this”或“ that”。

例如,如果我希望.contains断言查找foobar,我将如何写期望?

await t.expect('foo bar').contains('bar')

1 个答案:

答案 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")
    }