如何知道使用量角器在控制台输出中看不到哪个元素?

时间:2016-06-29 11:47:14

标签: javascript node.js jasmine protractor

当我使用量角器执行茉莉花脚本时,我得到的信息低于消息,但测试步骤有很多元素,我不确定哪个元素不可见,有没有办法在控制台中捕获非可见元素输出

  

×应该能够更改现有“管理员”的名字和姓氏   用户

     
      
  • 失败:元素不可见
  •   

我是否需要对配置文件进行任何更改?

我当前的配置如下。

/ **  *由KumarSo于2016年5月25日创建。

* /

exports.config = {
    directConnect: true,
    seleniumAddress: 'http://localhost:4444/wd/hub',
    specs: ['../conf/costome_conf.js','../test_spec/EditUserTest_spec.js'],
    chromeDriver: C:/Users/KumarSo/AppData/Roaming/npm/node_modules/chromedriver/lib/chromedriver/chromedriver.exe',
    framework: 'jasmine2',
    multiCapabilities: [{
        browserName: 'chrome'
    }],
    allScriptsTimeout: 100000,
    jasmineNodeOpts: {
        onComplete: null,
        isVerbose: false,
        showColors: true,
        includeStackTrace: true,
        defaultTimeoutInterval: 100000,
        print: function () {
        }
    },
    onPrepare: function () {
        var SpecReporter = require('jasmine-spec-reporter');
        // add jasmine spec reporter
        jasmine.getEnv().addReporter(new SpecReporter({
            displayStacktrace: true,
            displayFailuresSummary: true,
        }));
        browser.driver.manage().window().maximize();
   },
};

0 个答案:

没有答案