@@ -33,7 +33,7 @@ class Capability extends BaseCapability
3333 /**
3434 * Desired capabilities - SauceLabs
3535 *
36- * @see http ://saucelabs.com/docs/ondemand/ additional-config#desired-capabilities
36+ * @see https ://saucelabs.com/docs/additional-config
3737 */
3838
3939 // Job Annotation
@@ -48,24 +48,29 @@ class Capability extends BaseCapability
4848 const VIDEO_UPLOAD_ON_PASS = 'video-upload-on-pass ' ; // Video upload on pass
4949 const RECORD_SCREENSHOTS = 'record-screenshots ' ; // Record step-by-step screenshots
5050 const CAPTURE_HTML = 'capture-html ' ; // HTML source capture
51- const STRIP_SE2_SCREENSHOTS = 'strip-se2-screenshots ' ; // Disable Selenium 2's automatic screenshots
51+ const QUIET_EXCEPTIONS = 'webdriver.remote.quietExceptions ' ; // Enable Selenium 2's automatic screenshots
5252 const SAUCE_ADVISOR = 'sauce-advisor ' ; // Sauce Advisor
5353
5454 // Selenium specific
5555 const SELENIUM_VERSION = 'selenium-version ' ; // Use a specific Selenium version
56+ const SINGLE_WINDOW = 'single-window ' ; // Selenium RC's single window mode
57+ const USER_EXTENSIONS_URL = 'user-extensions-url ' ; // Selenium RC's user extensions
58+ const FIREFOX_PROFILE_URL = 'firefox-profile-url ' ; // Selenium RC's custom Firefox profiles
5659
5760 // Timeouts
5861 const MAX_DURATION = 'max-duration ' ; // Set maximum test duration
5962 const COMMAND_TIMEOUT = 'command-timeout ' ; // Set command timeout
6063 const IDLE_TIMEOUT = 'idle-timeout ' ; // Set idle test timeout
6164
62- // Sauce OnDemand specific
63- const AVOID_PROXY = 'avoid-proxy ' ; // Avoid proxy
65+ // Sauce specific
66+ const PRERUN = 'prerun ' ; // Prerun executables
67+ const TUNNEL_IDENTIFIER = 'tunnel-identifier ' ; // Use identified tunnel
68+ const SCREEN_RESOLUTION = 'screen-resolution ' ; // Use specific screen resolution
6469 const DISABLE_POPUP_HANDLER = 'disable-popup-handler ' ; // Disable popup handler
70+ const AVOID_PROXY = 'avoid-proxy ' ; // Avoid proxy
6571 const DEVICE_ORIENTATION = 'deviceOrientation ' ; // Device orientation (portrait or landscape)
6672 const DEVICE_TYPE = 'deviceType ' ; // Device type (phone or tablet)
6773
6874 // Job Sharing
69- const PUBLIC_RESULTS = 'public ' ; // Share job's result page, video, and logs
70- const RESTRICTED_PUBLIC = 'restricted-public ' ; // Share job's result page and video only
75+ const PUBLIC_RESULTS = 'public ' ; // Make public, private, or share jobs
7176}
0 commit comments