Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 434 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 434 Bytes

Test-PhantomJs-Geb

Simple Geb - PhantomJs integration

To test it simply run

gradle test

It works only under windows, but is simply add *nix support by editing /src/test/groovy/mytest/GebConfig.groovy

// set phantomjs binary path for windows - in bin/phantomjs.exe
if (System.properties['os.name'].toLowerCase().contains('windows')) {
    phantomjsBin = new File('bin/phantomjs.exe').getAbsolutePath();
}