mirror of
https://gh.wpcy.net/https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-04-30 09:52:17 +08:00
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import {browser, by, element} from 'protractor';
|
|
|
|
export class AppPage {
|
|
navigateTo() {
|
|
return browser.get('/');
|
|
}
|
|
|
|
getLoginForm() {
|
|
return element(by.css('app-root scrm-login-ui form')).getAttribute('name');
|
|
}
|
|
}
|