我是Jasmine测试语言的新手。我试图测试这样的事情。 (以下代码工作正常,但我的情况有点不同)
describe('Phone list view', function() {
beforeEach(function() {
browser().navigateTo('../../app/index.html#/phones');
});
it('should render phone specific links', function() {
input('query').enter('nexus');
element('.phones li a').click();
expect(browser().location().url()).toBe('/phones/nexus-s');
});
});
当我跑线时:
element('.phones li a').click();
应用程序应该打开浏览器的新选项卡并在那里更改URL。
如何在新的浏览器标签实例中测试网址。