We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138ace7 commit 4d9949dCopy full SHA for 4d9949d
sauceLabs.ts
@@ -11,6 +11,7 @@ export type SauceLauncher = {
11
platform?: string;
12
13
// for mobile
14
+ deviceOrientation?: string,
15
deviceName?: string;
16
appiumVersion?: string;
17
platformName?: string;
@@ -68,6 +69,7 @@ export const sauceLaunchers: Record<string, SauceLauncher> = {
68
69
browserName: "Safari",
70
platformName: "iOS",
71
platformVersion: "13.4",
72
+ deviceOrientation: "portrait",
73
deviceName: "iPhone Simulator",
74
},
75
@@ -76,6 +78,7 @@ export const sauceLaunchers: Record<string, SauceLauncher> = {
76
78
browserName: "Chrome",
77
79
platformName: "Android",
80
platformVersion: "11.0",
81
82
deviceName: "Android GoogleAPI Emulator",
83
84
};
0 commit comments