当前位置:  开发笔记 > 编程语言 > 正文

量角器检查位置路径

如何解决《量角器检查位置路径》经验,为你挑选了1个好方法。

是否可以检查位置路径?我是AngularJS的新手,我正在学习一本描述ngScenario的书.这个软件包已被弃用,我正在尝试将描述的测试更新为量角器.

例如

expect(browser().location().path()).toEqual('/books'); 

变为:

expect(browser.getCurrentUrl()).toEqual('http://localhost:8080/#/books');

但我想避免http://localhost:8080/.



1> alecxe..:

只需使用茉莉花匹配器的力量:

expect(browser.getCurrentUrl()).toMatch(/\/#\/books$/);  // /#/books at the end of url
expect(browser.getCurrentUrl()).toEndWith("/#/books");
expect(browser.getCurrentUrl()).toContain("/#/books");

哪里toEndWith()来自一个很棒的jasmine-matchers图书馆.

或者,如果您想要完全匹配,请获取基本URL:

expect(browser.getCurrentUrl()).toEqual(browser.baseUrl + "/#/books");

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有