在 Eclipse 中使用 Maven 配置 Geb 和 Spock

Configuring Geb and Spock with Maven in Eclipse

免责声明:在我来这里问这个问题之前,我查阅了很多不同的来源。我已经使用 maven、geb 之书、大量 YouTube 教程等引用了 geb 的 GitHub 项目。没有任何效果。

我只是想启动一个项目,然后 运行ning 进行非常简单的自动搜索引擎测试,这样我就可以使用这些工具了。

这是我的 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion>
    <groupId>nope</groupId>
    <artifactId>nope</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>testing this</name>
    <description>testing this</description>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/junit/junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.spockframework/spock-core -->
        <dependency>
            <groupId>org.spockframework</groupId>
            <artifactId>spock-core</artifactId>
            <version>1.1-groovy-2.4</version>
            <scope>test</scope>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all -->
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-all</artifactId>
            <version>2.4.13</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.gebish/geb-spock -->
        <dependency>
            <groupId>org.gebish</groupId>
            <artifactId>geb-spock</artifactId>
            <version>2.1</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-firefox-driver -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-firefox-driver</artifactId>
            <version>3.9.1</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-chrome-driver</artifactId>
            <version>3.9.1</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-support -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-support</artifactId>
            <version>3.9.1</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-server -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-server</artifactId>
            <version>3.9.1</version>
        </dependency>


    </dependencies>
</project>

主要Groovy测试class:

package com.na.tests

import spock.lang.Specification
import geb.*

class MyBaseTests extends Specification {

    def "search 'Groovy Browser Automation' in duckduckgo"() {

        given: "we are on the duckduckgo search-engine"
            go "http://duckduckgo.com"

        when: "we search for 'Groovy Browser Automation'"
            $("#search_form_homepage").q = "Groovy Browser Automation"
            $("#search_button_homepage").click()

        then: "the first result is the geb website"
            assert $("#links").find(".links_main a", 0).attr("href") == "http://www.gebish.org/"
    }
}

这是我在测试中得到的异常。我 运行 一个非常简单的断言 Hello World 测试已经通过,为了清楚起见我删除了它。:

groovy.lang.MissingMethodException: No signature of method: com.na.tests.MyBaseTests.go() is applicable for argument types: (java.lang.String) values: [http://duckduckgo.com] Possible solutions: is(java.lang.Object), Mock(), Spy(), any(), grep(), Mock(groovy.lang.Closure) at com.na.tests.MyBaseTests.search 'Groovy Browser Automation' in duckduckgo(MyBaseTests.groovy:22)

编辑

值得注意的是,在我的 IDE (Eclipse) 中,似乎有些关键字无法识别或不合法(即:go "http://duckduckgo.com")。让我觉得我没有配置什么。

如果您想使用 geb,您需要扩展 geb.spock.GebSpec 而不是 Specification。另见 gebish。org/manual/current/#spock-junit-testng

在 GitHub 我有一组三个 Maven 项目,它们通过 Maven 配置一起设置 Spock、Geb 和 multi-browser 测试。您可以在 HtmlUnit、PhantomJS、Chrome、Firefox、IE、Edge、Opera 之间轻松切换使用的浏览器。它附带了一系列示例测试和准备好的 Geb 配置:

只需按照此处列出的顺序将它们全部 mvn clean install 克隆并构建,然后 运行 从第三个开始构建测试。当然,您可以将所有内容都放在一个模块中,但我认为将版本管理和依赖项管理与实际应用程序分开更有意义,以便能够 re-use 那些测试依赖项,Maven 也是如此练习。


更新:

然后只需将您的测试添加到示例项目并 运行 它。我重命名了 class 以便以 *Test 而不是 *Tests 结尾,因为这是默认情况下 Maven 通过 Surefire 查找单元测试的方式。如果您更喜欢 运行 作为集成测试,因为它打开浏览器并且基本上很慢,请将其重命名为 *IT.

我还按照 Leonard 的正确建议修复了基础 class,并将显式更改为隐式断言。

package com.na.tests

import geb.spock.GebSpec

class MyBaseTest extends GebSpec {
  def "search 'Groovy Browser Automation' in duckduckgo"() {
    given: "we are on the duckduckgo search-engine"
    go "http://duckduckgo.com"

    when: "we search for 'Groovy Browser Automation'"
    $("#search_form_homepage").q = "Groovy Browser Automation"
    $("#search_button_homepage").click()

    then: "the first result (excluding ads) is the geb website"
    $("#links").$(".links_main a", 0).attr("href") == "http://www.gebish.org/"
  }
}