mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
17 lines
267 B
TypeScript
17 lines
267 B
TypeScript
import { browser, by, element } from 'protractor';
|
|
|
|
export class LoadingPage {
|
|
navigateTo() {
|
|
return browser.get('/loading');
|
|
}
|
|
|
|
getButton() {
|
|
return element(by.css('ion-button'));
|
|
}
|
|
|
|
getLoading() {
|
|
return element(by.css('ion-loading'));
|
|
}
|
|
|
|
}
|