量角器:更新baseURL,以便不在" app / index"上运行

时间:2014-10-16 10:10:48

标签: angularjs protractor

是否可以在没有目录扩展名的情况下运行Protractor测试" app / index.html"被添加? 我想通过MAMP localhost:8888 / project /运行测试,但没有用于提供静态文件的APP目录。将基本URL更新为

baseUrl: 'http://localhost:8888/project',
然后

将尝试在"http://localhost:8888/project/app/index.html"

上运行该应用程序

1 个答案:

答案 0 :(得分:0)

解决方案是在Jasmine测试文件中,这导致了问题

beforeEach(function() {
  browser.get('app/index');
});