This file contains 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
import org.junit.Test; | |
import org.mockito.Mockito; | |
import org.openqa.selenium.*; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; | |
import static org.hamcrest.Matchers.is; | |
import static org.junit.Assert.assertThat; |
This file contains 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
FirefoxProfile fxProfile = new FirefoxProfile(); | |
fxProfile.setPreference("browser.download.folderList",2); | |
fxProfile.setPreference("browser.download.manager.showWhenStarting",false); | |
fxProfile.setPreference("browser.download.dir","c:\\mydownloads"); | |
fxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv"); | |
WebDriver driver = new FirefoxDriver(fxProfile); | |
driver.navigate().to("http://www.foo.com/bah.csv"); |
This file contains 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
var runAfterFiveSeconds = delayedAdd(2, 3); | |
var multiplication = function (result) { | |
return result * result | |
}; | |
var printResult = function (result) { | |
console.log(result); | |
}; | |
var multiplicationAfterFiveSeconds = runAfterFiveSeconds(multiplication); | |
multiplicationAfterFiveSeconds(printResult); |
This file contains 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
// NOTE: This is not a by-the-book implementation of the UnitOfWork pattern. If you don't feel it is | |
// OK, then you can call this class Transaction or anything like that | |
public class UnitOfWork { | |
// static reference to entityManagerFactory | |
public static UnitOfWork createUnitOfWork() { | |
EntityManager entityManager = entityManagerFactory.createEntityManager(); | |
return new UnitOfWork(entityManager); | |
} | |
This file contains 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
<html> | |
<body> | |
<pre id="display"></pre> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.0.5/es5-shim.min.js"></script> | |
<script src="//cdn.jsdelivr.net/pouchdb/3.2.0/pouchdb.min.js"></script> | |
<script src="index.js"></script> | |
</body> | |
</html> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="//cdn.jsdelivr.net/pouchdb/3.2.0/pouchdb.min.js"></script> | |
<script src="pouchdbMapReduceGroupByExample.js"></script> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains 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
private String getXPathVersion(WebDriver context) { | |
try { | |
By.xpath("/nobody[@attr=lower-case('A')]").findElement(context); | |
return "2.0"; | |
} catch (Exception e) { | |
return "1.0"; | |
} | |
} |
This file contains 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
<build>...<plugins>... | |
<plugin> | |
<groupId>org.wildfly.plugins</groupId> | |
<artifactId>wildfly-maven-plugin</artifactId> | |
<version>1.0.2.Final</version> | |
<configuration> | |
<afterDeployment> | |
<commands> | |
<command>/subsystem=security/security-domain="unused-domain":remove</command> | |
</commands> |
This file contains 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
$(document).on("keyup.escKeyClosesModal", function(e) { ... }); |
This file contains 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
import static io.github.seleniumquery.SeleniumQuery.$; // this will allow the short syntax | |
public class SeleniumQueryExample { | |
public static void main(String[] args) { | |
// The WebDriver will be instantiated only when first used | |
$.driver() | |
.useChrome() // sets Chrome as the driver (this is optional, if omitted, will default to HtmlUnit) | |
.headless() // configures chrome to be headless | |
.autoDriverDownload() // automatically downloads and configures chromedriver.exe | |
.autoQuitDriver(); // automatically quits the driver when the JVM shuts down |