gpt4 book ai didi

automated-tests - TestCafe:用户角色 - 错误指定的 glob 模式与任何文件都不匹配或默认测试目录为空

转载 作者:行者123 更新时间:2023-12-04 10:54:16 25 4
gpt4 key购买 nike

我正在尝试根据 https://devexpress.github.io/testcafe/documentation/test-api/authentication/user-roles.html 在 TC 中使用 Use Role

在我看来,一切都很好,但我收到了
错误指定的 glob 模式与任何文件不匹配或默认测试目录为空。

我不理解为什么。有人可以指出错误在哪里吗?

> import { ClientFunction } from 'testcafe'; 
> // take url import config from './Config/config';
> import loginPage from './POM_LoginPage';
> import Elements from './POM_Elements';
>import {Role} from 'testcafe'
>
>
> let l1 = require('./support/global').log[1];
>
> const SuperUser = Role(`${config.baseUrl}`, async t => {
> //Log in as superuser
>
> await loginPage.logIn(l1.username, l1.password)
>
> });
>
> ixture`SanityTests`
> .beforeEach(async t => {
> await t.maximizeWindow() })
> .page`${config.baseUrl}`;
>
>
> test('Navigation to the Users components', async t => {
>
> //Log in
>
> await t.useRole(SuperUser);
>
> //Go to the "other page"
>
> await t.click(Elements.navDropdown);
> await t.click(Elements.usersButton);
>
> const users= ClientFunction(() => window.location.href)
> await
> t.expect(users()).contains(`${config.Url}`);
> })

最佳答案

此问题与Roles无关特征。错误消息告诉您为执行的测试指定了错误的 glob 路径模式。检查指定的路径值是否与任何测试匹配。
有关更多信息,请参阅 Runner.src方法说明。

关于automated-tests - TestCafe:用户角色 - 错误指定的 glob 模式与任何文件都不匹配或默认测试目录为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59307565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com