mirror of
https://github.com/Raghu-Ch/weirdbeard.life.git
synced 2026-02-10 04:33:02 -05:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class Weirdbeard.LifePage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('wb-root h1')).getText();
|
|
}
|
|
}
|