BestNotes/test/specs/base/navigation.js
2019-11-29 22:16:18 +01:00

15 lines
341 B
JavaScript

const base = require('./base');
const Login = require('../components/login');
class Navigation {
constructor() {
this.loginUrl = 'http://bestnotes.pythonanywhere.com/bestnotes/accounts/login/';
}
toLoginPage() {
browser.url(this.loginUrl);
return new Login();
}
}
module.exports = new Navigation();