Skip to content

Instantly share code, notes, and snippets.

View acdcjunior's full-sized avatar
🌘
It's been a hard day's night

Antônio "acdc" Jr. acdcjunior

🌘
It's been a hard day's night
View GitHub Profile
@acdcjunior
acdcjunior / MockitoVsHandBuiltDoublesTest.java
Created January 23, 2016 22:16
Mockito vs. Hand-built test doubles (Mocks) small performance test
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;
@acdcjunior
acdcjunior / SeleniumFileDownloadFirefox.java
Created June 30, 2015 18:00
Selenium Automatic File download using Firefox
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");
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);
@acdcjunior
acdcjunior / UnitOfWork.java
Last active May 3, 2020 16:03
UnitOrWork + DAO + EntityManager programatic transaction handling suggestion
// 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);
}
@acdcjunior
acdcjunior / index.html
Last active August 29, 2015 14:11
pdb2
<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>
@acdcjunior
acdcjunior / index.html
Created December 12, 2014 00:27
PouchDB/CouchDB Map/Reduce GROUP BY Example
<!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>
@acdcjunior
acdcjunior / SeleniumXPathVersion2.java
Last active August 21, 2016 14:53
What XPath version does a given Selenium WebDriver support?
private String getXPathVersion(WebDriver context) {
try {
By.xpath("/nobody[@attr=lower-case('A')]").findElement(context);
return "2.0";
} catch (Exception e) {
return "1.0";
}
}
@acdcjunior
acdcjunior / wildfly-maven-plugin-pom.xml
Created December 4, 2014 04:26
Wildfly Maven Plugin afterDeployment CLI command example snippet pom.xml
<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>
@acdcjunior
acdcjunior / namedKeyUpBinding.js
Last active August 29, 2015 14:10
Creating (binding) a specific event and removing (unbinding) it only
$(document).on("keyup.escKeyClosesModal", function(e) { ... });
@acdcjunior
acdcjunior / SeleniumQueryExample.java
Last active December 17, 2017 19:15
seleniumQuery Example class/code from demo project
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