How to assert the page title using AngularJS Scenario

449 Views Asked by At

I tried the following but got an error : expect undefined toBe "/"

    browser().navigateTo('/');
    expect(browser().location().url()).toBe("/");
    expect(document.title).toBe("something");

Page does have a title "something".

1

There are 1 best solutions below

0
On BEST ANSWER

Since the test website runs in a frame, document.title would not work.

However, you can use this:

expect(element('title').text()).toBe("something");