mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 12:00:01 +03:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class YoutubeDLMaterialPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getParagraphText() {
|
|
return element(by.css('app-root h1')).getText();
|
|
}
|
|
}
|