testCafe超时返回成功

问题描述 投票:0回答:1

我有一个页面现在处于中断状态,我的后台正在纠正,但我的测试还是返回成功。

当我点击打开页面的时候,它永远在加载,没有打开页面,我的 "期待 "应该是返回一个错误,因为它没有找到 "#btnStopService"。

import 'testcafe';
import { Selector, ClientFunction } from 'testcafe';

fixture('Compass - Main page')
   .page('http://localhost:3000/')
   .beforeEach(async t => {
        //login
        t.ctx.username = 'admin';
        t.ctx.password = 'admin';

        await t.typeText(Selector('input').withAttribute('name','username'),  t.ctx.username, {
            paste: true,
            replace: true,
        });
        await t.typeText(Selector('input').withAttribute('name','password'), t.ctx.password, {
            paste: true,
            replace: true,
        });
        await t.click(Selector('button').withAttribute('tabindex','0'));
   })
   .afterEach(async t => {
        //logout
        await t.click(Selector('#logoutBtn'));
    });


    test('Check if Services / Site Health page is loading... *** NOT WORKING ***', async t => {

        await t.click(Selector('a').withExactText('Services'));

        await t.click(Selector('a').withAttribute('href','#objectstore/sites/health'));

        await t.expect(Selector('#btnStopService')).ok();
    });

我在运行它时,用的是:"#btnStopService"。testcafe edge .\test_spec.ts --selector-timeout 6000

我得到的回报是:

PS C:\ThinkOn\Compass_Test\Test1> testcafe edge .\test_spec.ts --selector-timeout 6000
Using locally installed version of TestCafe.
 Running tests in:
 - Microsoft Edge 17.17133 / Windows 10

 Compass - Main page
 √ Check if Services / Site Health page is loading... *** NOT WORKING ***


 1 passed (23s)
PS C:\ThinkOn\Compass_Test\Test1>

谢谢大家!

testing automation automated-tests e2e-testing testcafe
1个回答
4
投票

你需要添加一个 断言选项:

await t.expect(Selector('#btnStopService').exists).ok();

© www.soinside.com 2019 - 2024. All rights reserved.