本文整理汇总了TypeScript中protractor.browser.getLocationAbsUrl方法的典型用法代码示例。如果您正苦于以下问题:TypeScript browser.getLocationAbsUrl方法的具体用法?TypeScript browser.getLocationAbsUrl怎么用?TypeScript browser.getLocationAbsUrl使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类protractor.browser
的用法示例。
在下文中一共展示了browser.getLocationAbsUrl方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should render phone specific links', function() {
let query = element(by.model('$ctrl.query'));
query.sendKeys('nexus');
element.all(by.css('.phones li a')).first().click();
expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
});
示例2: it
it('should render phone specific links', function() {
let query = element(by.css('input'));
query.sendKeys('nexus');
element.all(by.css('.phones li a')).first().click();
browser.sleep(200); // Not sure why this is needed but it is. The route change works fine.
expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
});
示例3: it
it('should redirect index.html to index.html#/phones', function() {
//这里的browser对象是由Protractor提供的,大家可以把下面一行注释放开,看看这个对象的内容
//console.log(browser);
//首先利用browser.get()这个接口让浏览器打开app.index.html这个页面
browser.get('app/index.html');
//然后用browser.getLocationAbsUrl()获取到地址栏的URL,看看是不是转向了/phones这个路径
browser.getLocationAbsUrl().then(function(url) {
expect(url.split('#')[1]).toBe('/phones');
});
});
示例4: it
it('should render phone specific links', function() {
let phoneList = element.all(by.repeater('phone in $ctrl.phones'));
let query = element(by.model('$ctrl.query'));
query.sendKeys('nexus');
waitForCount(phoneList, 1);
let nexusPhone = phoneList.first();
let detailLink = nexusPhone.all(by.css('a')).first()
detailLink.click();
expect(browser.getLocationAbsUrl()).toBe('/phones/nexus-s');
});
示例5:
browser.get(0);
browser.get(true);
browser.get(() => {});
browser.refresh('1');
browser.refresh(true);
browser.refresh(() => {});
browser.refresh(100, 100);
browser.navigate(0);
browser.navigate('1');
browser.navigate(true);
browser.navigate(() => {});
browser.setLocation(0);
browser.setLocation(true);
browser.setLocation(() => {});
browser.setLocation('url', 'url');
browser.getLocationAbsUrl(0);
browser.getLocationAbsUrl('1');
browser.getLocationAbsUrl(true);
browser.getLocationAbsUrl(() => {});
browser.debugger(0);
browser.debugger('1');
browser.debugger(true);
browser.debugger(() => {});
browser.enterRepl(0, 0);
browser.enterRepl('1');
browser.enterRepl(true);
browser.enterRepl(() => {});
browser.pause(0, 0);
browser.pause('1');
browser.pause(true);
browser.pause(() => {});
示例6:
browser.findElement('');
browser.findElements('');
browser.isElementPresent('');
browser.addMockModule('', '');
browser.addMockModule('', '', ['','']);
browser.addMockModule('', () => {});
browser.addMockModule('', () => {}, ['','']);
browser.clearMockModules();
browser.removeMockModule('');
browser.getRegisteredMockModules();
browser.get('url');
browser.refresh();
browser.refresh(100);
browser.navigate();
browser.setLocation('url');
browser.getLocationAbsUrl();
browser.debugger();
browser.enterRepl();
browser.enterRepl(100);
browser.pause();
browser.pause(100);
browser.actions();
browser.wait('condition');
browser.wait('condition', 100);
browser.wait('condition', 100, 'message');
browser.getCurrentUrl();
browser.getTitle();
browser.takeScreenshot();
by.addLocator('name', () => {});
by.addLocator('name', 'script');
by.binding('bindingDescriptor');