量角器在本地运行,但不在Bamboo中运行(在页面上找不到Angular)

时间:2015-07-17 18:21:47

标签: angularjs protractor bamboo

在进行e2e测试一两天之后,我得到了一些我想通过Bamboo运行的东西。我可以在我自己的本地服务器上运行所有e2e测试,但是Bamboo失败并显示以下响应,当Chrome浏览器窗口弹出时,它显示" 403禁止":

Starting selenium standalone server...
[launcher] Running 1 instances of WebDriver
Selenium standalone server started at http://192.168.100.107:54926/wd/hub
Spec started

  Web App

    Sign In Page
      — should redirect to sign in page if not authenticated[39m
        - Failed: Angular could not be found on the page https://localhost/ : retries looking for angular exceeded
        - Failed: Error while waiting for Protractor to sync with the page: "angular could not be found on the window"

这是一个样本测试:

'use strict';

describe('Web App', function() {

  beforeEach(function() {
    browser.get('https://localhost/');
  });

  describe('Sign In Page', function() {
    it('should redirect to sign in page if not authenticated', function() {
      expect(browser.getLocationAbsUrl()).toMatch('/sign_in');
    });
  });
});

以及我认为与我的量角器-conf.js文件相关的内容:

exports.config = {
  allScriptsTimeout: 300000,

  baseUrl: 'https://localhost/',

  framework: 'jasmine2',

  specs: [
    'e2e/sign-in.scenarios.js'
  ],

  capabilities: {
    'browserName': 'chrome'
  },

  onPrepare: function() {
    browser.driver.manage().window().maximize();
    var SpecReporter = require('jasmine-spec-reporter');
    jasmine.getEnv().addReporter(new SpecReporter({displayStacktrace: true}));
  },

  getPageTimeout: 10000,

  jasmineNodeOpts: {
    showColors: true,
    print: function() {},
    defaultTimeoutInterval: 300000
  }
};

最后,我们运行了一个'npm install'在' grunt test'之前,我希望这些版本除了Chrome之外都是一样的吗?

我负责Bamboo的同事能够在Bamboo创建的临时目录中重新创建运行。在试图找出正在发生的事情时,我已经移动了" ng-app"从head标签到body标签,我在protractor-conf.js文件中与baseUrl混淆,我的同事现在正在使用我的nginx配置文件(与他的不同)。

我已经没有想法尝试并欢迎任何建议!

朱莉

1 个答案:

答案 0 :(得分:2)

首先,在CI服务器中运行e2e测试并不是一个好习惯。 CI服务器应该只触发可以在另一台机器上运行的量角器测试(在您的网络上或在AWS或Sauce实验室的云上) - 请参阅http://angular.github.io/protractor/#/server-setup

在您的网络上运行Selenium服务器,您可以使用新地址设置protractor-conf.js文件,如下所示:

seleniumAddress: 'http://<seleniumServer_ip>:4444/wd/hub'

我不了解的另一件事是你的baseUrl。您应该将Web应用程序部署到另一台服务器(从不在CI服务器中),并在网络上的任何浏览器中访问它。然后,您可以将Web应用程序地址作为参数传递给Protractor,例如:

protractor protractor-conf.js --baseUrl="http://<webAppIP>"

使用此架构,您可以保持登录seleniumServer并观察运行测试时发生的情况。

++你可以通过截图来增强结果。