sauce_bindings icon indicating copy to clipboard operation
sauce_bindings copied to clipboard

Making test automation with Sauce Labs insanely simple

Results 89 sauce_bindings issues
Sort by recently updated
recently updated
newest added

#Added overloaded methods for ISauceRemoteDriver to include DataCenter and an int to pass in seconds for timeout. Implemented the overloaded methods in the SauceDriver class #189

dotnet

This replaces #169 Note that this is Draft, because it relies on [a new PR to Appium](https://github.com/appium/java-client/pull/1356) getting merged and released. I've built the jar with that commit locally and...

This is mostly working, but not yet ready for prime time; Working code with specs: * EmuSim Browser * EmuSim App * Test Object Browser It's going to need more...

Adding final SauceOptions

dotnet

@nadvolod please help me update this with the user facing API you want to see for these things. This is the C# equivalent of the tests in the other bindings....

dotnet

I've updated the C# implementation to match what we have been doing in Java. This is a pretty good preview of where the bindings can go. Please let me know...

dotnet

This error will be thrown when we try to start a test but a session is never created ```java java.lang.NullPointerException at com.saucelabs.saucebindings.SauceSession.updateResult(SauceSession.java:59) at com.saucelabs.saucebindings.SauceSession.stop(SauceSession.java:54) at com.saucelabs.saucebindings.SauceSession.stop(SauceSession.java:50) at com.saucedemo.SauceConnectTest.teardown(SauceConnectTest.java:39) ``` This...

bug
java

New feature released from Sauce https://wiki.saucelabs.com/display/DOCSDEV/Measure+Page+Load+Performance+Using+Test+Automation It's relatively easy to implement and allows a user to pause performance until a certain page. ```java browser.execute('sauce:performanceDisable') browser.url('https://www.json.org/json-en.html') browser.execute('sauce:performanceEnable') browser.url('https://example.com') ```

enhancement

Currently, if we do this: ``` sauceOptions = new SauceOptions(); sauceOptions.setExtendedDebugging(true); sauceOptions.setCapturePerformance(true); ``` The outcome of the performance test will look like [this](https://snipboard.io/5N98dD.jpg). This does make sense because how can...

bug
enhancement
good first issue

Currently we publish the website by running the following command: `GIT_USER=nadvolod CURRENT_BRANCH=master yarn run publish-gh-pages` It might be better and easier to do this automatically through a GH workflow after...

enhancement