File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,12 @@ import {
16
16
IDevice ,
17
17
Device ,
18
18
DeviceController ,
19
+ IOSController ,
20
+ AndroidController ,
19
21
Platform ,
20
22
Status ,
21
23
DeviceType
22
24
} from "mobile-devices-controller" ;
23
- import { IOSController } from "../../mobile-devices-controller/lib/ios-controller" ;
24
- import { AndroidController } from "../../mobile-devices-controller/lib/android-controller" ;
25
-
26
25
27
26
export class DeviceManger implements IDeviceManager {
28
27
private static _emulators : Map < string , IDevice > = new Map ( ) ;
@@ -141,6 +140,7 @@ export class DeviceManger implements IDeviceManager {
141
140
public async installApp ( args : INsCapabilities ) : Promise < any > {
142
141
if ( args . isIOS ) {
143
142
IOSController . installApp ( args . device , args . appiumCaps . app ) ;
143
+ console . log ( `Application is successfully installed!` )
144
144
} else {
145
145
AndroidController . installApp ( args . device , args . appiumCaps . app )
146
146
}
You can’t perform that action at this time.
0 commit comments