测试用例执行失败,并且在命令行中引发任何错误堆栈跟踪

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

我使用量角器-黄瓜框架创建了一个测试用例,并使用Grunt来执行该测试用例。但是,在执行时它失败了,并且它没有提供任何错误stacktrace来知道它为什么失败。

我已经搜索过Google,还查看了其他Stack Overflow解决方案,但我没有找到解决方案。

配置文件

exports.config = {

  //seleniumAddress: 'http://localhost:4444/wd/hub',
  getPageTimeout: 60000,
  allScriptsTimeout: 500000,
  directConnect:true,

  framework: 'custom',
  // path relative to the current config file
  frameworkPath: require.resolve('C:\\...\\node_modules\\protractor-cucumber-framework'),
  capabilities: {
    'browserName': 'chrome'
  },
  ignoreUncaughtExceptions:true,
  // Spec patterns are relative to this directory.
  specs: [
    './learnFramework/utility/test.feature'
  ],

  cucumberOpts: {
    require: './learnFramework/TestCases/spec.js',
    tags: false,
    profile: false,
    'no-source': true
  },
  onPrepare: function () {
    browser.ignoreSynchronization=true;
    browser.manage().window().maximize();
  }
};

规格文件

module.exports=function(){
    this.Given(/^Open the browser and Load the URL$/,async function(){
        browser.get("https://google.com");
    });

    this.When(/^User entered the text in the search box$/,async function(){
        browser.sleep(5000);
        console.log(await browser.getTitle());
        await element(By.name("q")).sendKeys("facebook");
        browser.sleep(3000);
    });

    this.Then(/^click on search$/,async function(){
        browser.action().sendKeys(protractor.Key.ENTER).perform();
        browser.sleep(5000);
    });
}

错误日志

Running "jshint:files" (jshint) task
>> 1 file lint free.
>
Running "protractor:singlerun" (protractor) task
[00:08:29] I/launcher - Running 1 instances of WebDriver
[00:08:29] I/direct - Using ChromeDriver directly...
>
DevTools listening on ws://127.0.0.1:50146/devtools/browser/5c09d68c-f3ff-43b2-b645-0b5c098c41d9
Feature: Title of your feature
>
    I want to use this template for my feature file
>
  Scenario: Title of your scenario
  ✓ Given Open the browser and Load the URL
  ✖ When User entered the text in the search box
  - And click on search
>
Failures:
>
[00:09:03] I/launcher - 0 instance(s) of WebDriver still running
[00:09:03] I/launcher - chrome #01 failed 1 test(s)
[00:09:03] I/launcher - overall: 1 failed spec(s)
[00:09:03] E/launcher - Process exited with error code 1
>>>
>>> Test failed but keep the grunt process alive.
>
Done.

如果您观察到错误日志“何时”步骤已失败,但命令行中没有错误堆栈跟踪以查找失败原因,则]。

我的期望是,它应该显示错误堆栈跟踪信息以说明失败原因。

我使用量角器-黄瓜框架创建了一个测试用例,并使用Grunt来执行该测试用例。但是,在执行时它失败了,它没有提供任何错误stacktrace ...

selenium-webdriver protractor gruntjs cucumber cucumberjs
1个回答
0
投票

您需要对浏览器操作使用await,否则它将同步执行这些操作。

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