sauce_bindings
sauce_bindings copied to clipboard
Making test automation with Sauce Labs insanely simple
#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
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...
@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....
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...
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...
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') ```
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...
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...