This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
up.UserId | |
,XOR(up.Flags) | |
FROM | |
UserPermissions up | |
GROUP BY | |
up.UserId |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```java | |
@AfterMethod(alwaysRun = true) | |
public void shutDownDriver(ITestResult result) throws IOException { | |
}@AfterMethod(alwaysRun = true) | |
public void shutDownDriver(ITestResult result) throws IOException { | |
// Update SauceLabs result | |
if(testbed.equals("saucelab")) { | |
String jobID = ((RemoteWebDriver)driver).getSessionId().toString(); | |
SauceREST client = new SauceREST("username", "key"); |