gradle - Serenity BDD ConfigurationException after updating IntelliJ -
i try run bdd scripts via gradle getting following error message after updating intellij 2016.2
no implementation net.thucydides.core.webdriver.webdrivermanager bound. while locating net.thucydides.core.webdriver.webdrivermanager
the code raising error this:
@before public void jeffcanbrowsetheweb() { giventhat(jeff).can(browsetheweb.with(thebrowser)); }
the binaries browser linked this: test {
system.setproperty("webdriver.chrome.driver","d:\\lib\\chromedriver.exe") /* pass system properties: */ systemproperties system.getproperties()}
- the compile dependencies selenium-java pointing version '2.53.1'
- the gradle command: clean test aggregate
i cannot figure out wrong since did nothing else updating ide. maybe has hint?
thanks in advance, martin
i ran same problem when following example in article mentioned in comment. in case (without using ide) seemed out-of-date dependency (which renamed).
try changing dependency 'net.serenity-bdd:browse-the-web' 'net.serenity-bdd:serenity-screenplay-webdriver' in build.gradle.
Comments
Post a Comment