BestNotes/test/specs/base/navigation.js
2019-12-08 22:46:26 +01:00

22 lines
561 B
JavaScript

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