首页 > 解决方案 > 在 TestCafe 中设置环境变量给出未定义的值

问题描述

我正在学习 TestCafe,我是新手。

我正在尝试遵循此处提到的:https ://devexpress.github.io/testcafe/documentation/recipes/access-environment-variables-in-tests.html

我有一个在我的 Windows 机器上运行的代码!!

fixture`Getting Started`.page`http://devexpress.github.io/testcafe/example`;

test("My First Test", async t => {
    await t
    .typeText('#developer-name', 'John Smith')
    .click('#submit-button')
    .takeScreenshot();

    const articleHeader = await Selector('.result-content').find('h1');
    
    // Obtain the text of the article header
    let headerText = await articleHeader.innerText;
    console.log(process.env.DEV_MODE);
});

我的脚本部分是这样的

"scripts": {
    "setnode": "set DEV_MODE=staging",
    "test:chrome": "npm run setnode & npx testcafe \"chrome --start-fullscreen\" e2e/tests"
  }

当我运行这个命令时npm run test:chrome

我得到这样的输出

ui-testcafe-poc@1.0.0 setnode C:\TestCafeProjects\ui-testcafe-poc set DEV_MODE=staging

 Running tests in:
 - Chrome 79.0.3945.130 / Windows 10

Getting Started  

undefined   

√ My First Test

为什么console.log 写为未定义而不是暂存?

标签: node.jstypescriptnpmtestcafeui-testing

解决方案


脚本中的 & 符号 ( &) 并行运行它们。但是,您需要使用&&操作数按顺序运行它们。

此外,npm 脚本会在后台生成 shell 进程(Windows 上的 cmd),并且该set命令设置的变量仅存在于其自己的会话中。以下脚本应该可以工作:

"scripts": {        
    "test:chrome": "set DEV_MODE=staging && npx testcafe \"chrome --start-fullscreen\" e2e/tests"
}

推荐阅读