1

Cucumber と Spring で Serenity を使用しようとしていますが、次の例外が原因でアプリケーションを起動できません。

org.openqa.selenium.interactions.internal.Locatable

これが私のbuild.gradle見た目です:

buildscript {
    ext {
        springBootVersion = '1.5.8.RELEASE'
    }
    repositories {
        // Nexus Repository
    }
    dependencies {
        ...
        classpath("net.serenity-bdd:serenity-gradle-plugin:1.8.21")
    }
}

...
apply plugin: 'org.springframework.boot'
apply plugin: 'net.serenity-bdd.aggregator'

sourceCompatibility = 1.8

repositories {
    // Nexus Repository
}

dependencies {
    ...
    testCompile group: 'net.serenity-bdd', name: 'serenity-spring', version: '1.8.21'
    testCompile group: 'net.serenity-bdd', name: 'serenity-cucumber', version: '1.6.10'

    testCompile group: 'junit', name: 'junit', version: '4.12'
    testCompile('org.springframework.boot:spring-boot-starter-test')

}

gradle.startParameter.continueOnFailure = true

依存関係のプライベート Nexus リポジトリにのみアクセスでき、serenity-springis1.8.21および for serenity-cucumberisの最新バージョンにアクセスできます1.6.10

Runner クラスは次のようになります。

@RunWith(CucumberWithSerenity.class)
@CucumberOptions(
        features = "src/test/resources/features",
        format = {"pretty","html:report"},
        glue = "<ommited>"
)
public class CucumberTestRunner {
}

古いと思われるこのドキュメントしか見つけることができませんでした: http://thucydides.info/docs/serenity-staging/#_building_serenity_projects_in_gradle

4

1 に答える 1