mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-16 15:09:57 +00:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
/* tslint:disable */
|
|
export class AngularElectronPage {
|
|
navigateTo(route: string) {
|
|
return browser.get(route);
|
|
}
|
|
}
|