Modernizacion completa del frontend: - Angular 8 -> 18.2.14 - Ionic 4 -> 8.7.17 - Capacitor 6.x (migracion desde Cordova/@ionic-native) - TypeScript 5.4.5 - Swiper 11 con Web Components API Cambios principales: - Migrar NativeStorage a @capacitor/preferences - Migrar InAppBrowser a @capacitor/browser - Migrar Camera a @capacitor/camera - Migrar Geolocation a @capacitor/geolocation - Migrar StatusBar/SplashScreen a Capacitor - Migrar Facebook/Google login a plugins Capacitor - Actualizar lazy loading syntax (Angular 12+) - Configurar buildOptimizer: false para Ionic 8 - Limpiar package.json de dependencias obsoletas - Agregar README con guia de instalacion Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
315 B
TypeScript
Executable File
16 lines
315 B
TypeScript
Executable File
import { browser, by, element } from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo(destination) {
|
|
return browser.get(destination);
|
|
}
|
|
|
|
getTitle() {
|
|
return browser.getTitle();
|
|
}
|
|
|
|
getPageOneTitleText() {
|
|
return element(by.tagName('app-home')).element(by.deepCss('ion-title')).getText();
|
|
}
|
|
}
|