gpt4 book ai didi

angularjs - Protractor 在本地运行,但不在 Bamboo 中运行(在页面上找不到 Angular)

转载 作者:行者123 更新时间:2023-12-02 23:59:48 25 4
gpt4 key购买 nike

经过一两天的 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');
});
});
});

这是我认为与我的 protractor-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
}
};

最后,我们在“grunt test”之前运行“npm install”,所以我希望除了 Chrome 之外,所有版本都相同?

我负责 Bamboo 的同事能够在 Bamboo 创建的临时目录中重新创建运行。为了弄清楚发生了什么,我已将“ng-app”从 head 标签移至 body 标签,我弄乱了 protractor-conf.js 文件中的 baseUrl,而我的同事现在正在使用我的 nginx配置文件(与他的不同)。

我已经没有办法尝试了,欢迎提出任何建议!

朱莉

最佳答案

首先,在 CI 服务器中运行 e2e 测试并不是一个好的做法。 CI 服务器应该只触发可以在另一台机器上运行的 Protractor 测试(在您的网络上或在 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 上保持登录状态,并观察测试运行时发生的情况。

++ 您可以增强截图的结果。

关于angularjs - Protractor 在本地运行,但不在 Bamboo 中运行(在页面上找不到 Angular),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31482296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com