File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ commands:
33
33
steps :
34
34
- run :
35
35
name : Install Appium
36
- command : npm install -g appium@next
36
+ command : npm install -g appium
37
37
- when :
38
38
condition :
39
39
equal :
@@ -42,7 +42,7 @@ commands:
42
42
steps :
43
43
- run :
44
44
name : Install XCUITest Driver
45
- command : appium driver install xcuitest
45
+ command : appium driver install xcuitest@4.35.0
46
46
- when :
47
47
condition :
48
48
equal :
@@ -51,7 +51,7 @@ commands:
51
51
steps :
52
52
- run :
53
53
name : Install UIAutomator2 Driver
54
- command : appium driver install uiautomator2
54
+ command : appium driver install uiautomator2@2.29.5
55
55
- run :
56
56
name : Launch Appium
57
57
# Enable --relaxed-security for `mobile: shell` command that Captain uses internally.
Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ public class CaptainTest : IDisposable
8
8
private static readonly CaptainConfig _config = new ( )
9
9
{
10
10
AndroidApp = Path . GetFullPath ( "../../../../example/build/app/outputs/flutter-apk/app-debug.apk" ) ,
11
+ AndroidAppId = "com.instabug.flutter.example" ,
11
12
AndroidVersion = "11" ,
12
13
IosApp = Path . GetFullPath ( "../../../../example/build/ios/iphonesimulator/Runner.app" ) ,
13
- IosVersion = "15.5"
14
+ IosAppId = "com.instabug.InstabugSample" ,
15
+ IosVersion = "15.5" ,
16
+ IosDevice = "iPhone 13 Pro Max"
14
17
} ;
15
18
protected static readonly Captain captain = new ( _config ) ;
16
19
You can’t perform that action at this time.
0 commit comments