Page title is not used in Selenium tests
authorŽeljko Filipin <zeljko.filipin@gmail.com>
Wed, 17 Jan 2018 12:15:56 +0000 (13:15 +0100)
committerŽeljko Filipin <zeljko.filipin@gmail.com>
Wed, 17 Jan 2018 12:15:56 +0000 (13:15 +0100)
Bug: T182421
Change-Id: I0de9bf27f1227e7b29c5aaa28451823e80fa8ff1

tests/selenium/pageobjects/page.js

index 864bdae..ed1f1bc 100644 (file)
@@ -1,9 +1,6 @@
 // From http://webdriver.io/guide/testrunner/pageobjects.html
 'use strict';
 class Page {
-       constructor() {
-               this.title = 'My Page';
-       }
        open( path ) {
                browser.url( '/index.php?title=' + path );
        }