Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix saucelabs settings #141

Merged
merged 3 commits into from
Oct 10, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add deviceOrientation for SauceLabs
  • Loading branch information
gfx committed Oct 10, 2020
commit 4d9949d0f1cb0110cbfadd467aad2c8941f43511
3 changes: 3 additions & 0 deletions sauceLabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type SauceLauncher = {
platform?: string;

// for mobile
deviceOrientation?: string,
deviceName?: string;
appiumVersion?: string;
platformName?: string;
Expand Down Expand Up @@ -68,6 +69,7 @@ export const sauceLaunchers: Record<string, SauceLauncher> = {
browserName: "Safari",
platformName: "iOS",
platformVersion: "13.4",
deviceOrientation: "portrait",
deviceName: "iPhone Simulator",
},

Expand All @@ -76,6 +78,7 @@ export const sauceLaunchers: Record<string, SauceLauncher> = {
browserName: "Chrome",
platformName: "Android",
platformVersion: "11.0",
deviceOrientation: "portrait",
deviceName: "Android GoogleAPI Emulator",
},
};