Protractor 在不执行 'it' 块的情况下通过了我的测试

Protractor passes my tests without executing the 'it' blocks

我最近尝试使用带有 Protractor 的页面对象模型 post http://engineering.wingify.com/posts/angularapp-e2e-testing-with-protractor/

然而,当我 运行 我的测试时,我的 it 块没有被执行。

下面是我的登录页面对象

/*File Name : loginPage.js*/
var loginPage = function () {
    'use strict';
    this.email = element(by.id('Email'));
    this.next = element(by.id('next'));
    this.pwd = element(by.id('Passwd'));
    this.signin = element(by.id('signIn'));
    this.submitButton = element(by.css('.login-form button[type="submit"]'));
    //this.classitem = element(by.css('hap-class-item'));
    //this.googlesigninbtn = element(by.css('[ng-click="login_google()"]'));

    //******************** functions *******************

    this.enterEmail = function (email) {
        browser.ignoreSynchronization = true;
        //browser.sleep(2000);
        this.email.clear();
        this.email.sendKeys(email);
        this.next.click();
        browser.sleep(2000);
    };

    this.enterPassword = function (pwd) {
        browser.ignoreSynchronization = true;
        this.pwd.clear();
        browser.sleep(2000);
        this.pwd.sendKeys(pwd);
        this.signin.click();
        browser.sleep(2000);
    };
};
module.exports = {
    log: new loginPage()
};

下面是我的注销页面对象

/*File Name : logoutPage.js*/
var logoutPage = function () {
    'use strict';
  this.logoutcaret = element(by.css('[ng-if="api.userNav.items"]'));
     this.logoutbtn = element(by.css('[ng-click="openModal()"]'));
     this.googlelogout = element(by.css('[ng-click="logout()"]'));
      var EC1 = protractor.ExpectedConditions;
    //******************** functions *******************
    this.logoutfn = function () {
     browser.wait(EC1.visibilityOf(this.logoutcaret),15000);
     this.logoutcaret.click();
     this.logoutbtn.click();
     this.googlelogout.click();
    };
};
module.exports = {
    log: new logoutPage()
};

下面是我的基本页面,其中创建了用于每个测试的登录和注销功能

/*File Name : LoginOut.js*/
//var switchwin = require('../commons/selectwindow.js');
var loginPage = require('../objects/loginpage.js'),
    eml = 'abc',
    password = 'pwd';

exports.login = function () {
    //browser.driver.manage().deleteAllCookies();
    browser.driver.get('https://accounts.google.com/ServiceLogin');
    loginPage.log.enterEmail(eml);
    loginPage.log.enterPassword(password);
    browser.driver.get('URL');
};

var logoutPage = require('../objects/logoutpage.js');
exports.logout = function () {
    logoutPage.log.logoutfn();
};

最后,下面是我的测试,它总是通过,但它只是登录和注销,但没有在 'it' 块中执行任何操作。

/*File Name : tests*/
'use strict';

describe('I want to test Smartshare', function () {

   var loginMod = require('../commons/loginout.js');
    //login before each test
    beforeEach(function () {
        loginMod.login();
    });
    var loginMod = require('../commons/loginout.js');
    //logout after each test
    afterEach(function () {
        loginMod.logout();
    });

    var smartshareMod = require('../objects/smartsharepage.js');
    //copy doc test
    it('should test sharing a document', function () {
     exports.copydoc = function () {
      smartshareMod.log.copyDoc().then(function(){
       console.log('document copied');
      });
     };
    });
});
我读过类似的问题但没有帮助 Protractor passes tests without running the testshttps://github.com/angular/angular-cli/issues/2072

    node.js version - v6.4.0 
    protractor version - 4.0.11 
    Running on MacOS Sierra 
    webdriver-manager updated to latest

这是因为您没有在 it() 块中调用任何函数,修复它:

it('should test sharing a document', function () {
    smartshareMod.log.copyDoc().then(function() {
        console.log('document copied');
    });
});

另请注意,您不必在每次使用页面对象时都 "require" - 在测试规范的顶部要求它们一次并重复使用:

'use strict';

var loginMod = require('../commons/loginout.js');
var smartshareMod = require('../objects/smartsharepage.js');

describe('I want to test Smartshare', function () {
    beforeEach(function () {
        loginMod.login();
    });

    afterEach(function () {
        loginMod.logout();
    });

    it('should test sharing a document', function () {
        smartshareMod.log.copyDoc().then(function() {
            console.log('document copied');
        });
    });
});