mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
17 lines
622 B
TypeScript
17 lines
622 B
TypeScript
import { AppiumDriver } from "nativescript-dev-appium";
|
|
import { PageObjectBaseModel } from "../../../page-object-base-model";
|
|
import { ElementCacheStrategy } from "./../../../helpers/navigation-helper";
|
|
import { ImageOptions } from "nativescript-dev-appium/lib/image-options";
|
|
|
|
export class TabViewBasePage extends PageObjectBaseModel {
|
|
|
|
constructor(_driver: AppiumDriver, elementCacheStrategy?: ElementCacheStrategy) {
|
|
super(_driver, ["tab-view"], elementCacheStrategy);
|
|
}
|
|
|
|
async init(subSuiteName: string) {
|
|
this._navigationLinks.push(subSuiteName);
|
|
await super.initSuite();
|
|
}
|
|
}
|