小编Aid*_*dan的帖子

运行功能文件时出错:无法遍历依赖图

我已经安装并尝试配置 Cucumber 预处理器包,以将 Cucumber 实现到现有的 cypress 框架中。但是当我去运行我的功能文件时,我收到以下错误。有任何想法吗?

错误:无法遍历依赖关系图:无法从 C:\Source\CoreDevGit\Src 所需的“C:\Source\CoreDevGit\Src\Project\Project.Web.CypressTests\cypress\support”中找到模块“./commands” \Project\Project.Web.CypressTests\cypress\support\index.js

插件/index.js

module.exports = (on, config) => {
  // `on` is used to hook into various events Cypress emits
  // `config` is the resolved Cypress config
  require('cypress-log-to-output').install(on, (type, event)=>{
    if (event.level === 'warning' || event.type === 'warning') {
      return false
    }
 
    return true
  })
};

module.exports = (on, config) => {
  
  on('before:browser:launch', (browser, launchOptions) => {
    if (browser.name === 'chrome' && browser.isHeadless) {
      launchOptions.args.push('--disable-gpu');
      return launchOptions
    }
  });
}

const …
Run Code Online (Sandbox Code Playgroud)

cypress cypress-cucumber-preprocessor

5
推荐指数
1
解决办法
7586
查看次数

创建一个全局变量并为其分配一个随机字符串

我想创建一个全局变量并为该变量分配一个随机字母。我希望能够全局调用此变量并将其粘贴到文本框中。如何做到这一点\n到目前为止,我已尝试以下尝试选择 6 个随机字符。

\n\n
** Variables **\n@{ORANGES} =  Generate Random String  6  \xc3\xa7\xc3\x913\xc3\xb9\xc3\xa1\xc3\xa2$\xc3\xa6\xc3\x9f\xc3\x98\n\nTest Case\n    input text  ${TXTBX_TITLE}  @{ORANGES}\n
Run Code Online (Sandbox Code Playgroud)\n

robotframework

-1
推荐指数
1
解决办法
2873
查看次数