Update README to reflect WIP
This commit is contained in:
18
test/pages/Subscribing.page.ts
Normal file
18
test/pages/Subscribing.page.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import Page, { PageOpenOptions } from './Page.ts';
|
||||
|
||||
export type SubscribingPageOptions = { };
|
||||
|
||||
export class SubscribingPage extends Page {
|
||||
constructor(baseUri: string, options: SubscribingPageOptions) {
|
||||
super(baseUri, options);
|
||||
}
|
||||
|
||||
get videoElement() {
|
||||
return $('video');
|
||||
}
|
||||
|
||||
public async open(options?: PageOpenOptions): Promise<void> {
|
||||
await super.open(options);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user