- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
抱歉所有这些代码,但我不知道是什么导致了我的问题,所以就这样吧。
我将 geb 插件配置为使用 JUnit 运行功能测试。所以我在我的 buildConfig.groovy 中有:
def seleniumVersion = "2.29.0"
def gebVersion = "0.7.0"
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
// runtime 'mysql:mysql-connector-java:5.1.5'
provided('com.oracle:oracle:11.1.0.7.0')
provided('com.oracle:i18n:10.2.0.5')
test ("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion") {
export = false
}
test("org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion"){
excludes "commons-io"
export = false
}
test ("org.seleniumhq.selenium:selenium-ie-driver:$seleniumVersion") {
export = false
}
test ("org.seleniumhq.selenium:selenium-support:$seleniumVersion") {
export = false
}
test ("org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion") {
export = false
}
test ("org.codehaus.geb:geb-junit4:$gebVersion") {
export = false
}
}
plugins {
build(":tomcat:$grailsVersion") {
export = false
excludes 'svn'
}
compile (":hibernate:$grailsVersion") {
export = false
excludes 'svn'
}
build (":release:2.0.0") {
excludes 'commons-io','http-builder'
export = false
}
compile(":spring-security-core:1.2.7.3") { excludes 'svn' }
compile(":spring-security-ldap:1.0.6")
compile (":remote-control:1.3") {
export = false
}
test(":geb:$gebVersion") {
export = false
}
}
我的 conf 文件夹中有一个 GebConfig.groovy:
driver = {
//def driver = new HtmlUnitDriver()
//driver.javascriptEnabled = true
//driver
def driver = new FirefoxDriver()
driver
}
environments {
// run as “grails -Dgeb.env=chrome test-app”
// See: http://code.google.com/p/selenium/wiki/ChromeDriver
chrome {
driver = { new ChromeDriver() }
}
// run as “grails -Dgeb.env=firefox test-app”
// See: http://code.google.com/p/selenium/wiki/FirefoxDriver
firefox {
driver = { new FirefoxDriver() }
}
}
我有一个登录功能测试:
class LoginTests extends GebReportingTest {
@Test
void login() {
to LoginPage
at LoginPage
username = "SERGIO"
password = "SERGIO"
loginButton.click()
assert at(IndexPage)
link.click()
}
}
这是我的两个页面:
class LoginPage extends Page {
static url = "login/auth"
static at = {
title ==~ /Efetuar Login/
}
static content = {
loginForm { $("form", id: "loginForm") }
username { $("input", type:"text", id:"username") }
password { $("input", type:"password", id:"password") }
loginButton{ $("input", type:"submit", id:"submit") }
}
}
class IndexPage extends Page {
static at = {
title ==~ /Security Service Index View/
}
static content = {
description { $('h1') }
link { $('a') }
}
}
出于某种原因,我的功能测试运行了两次,无论我如何开始:
grails test-app :functional
grails test-app -functional
最佳答案
看起来 Geb 插件与 Grails 2.3.x 不完全兼容。由于某种原因,升级到 Geb 插件 0.9.2 后,测试执行了两次。
我相信这个问题与 https://jira.grails.org/browse/GRAILS-10552 有关以及作为 https://jira.grails.org/browse/GRAILS-6352 的一部分所做的更改.
在 Grails 2.3.x+ 中,GrailsSpecTestType 负责 Junit 和 Spock 测试: https://github.com/grails/grails-core/blob/bce298f0/grails-test/src/main/groovy/org/codehaus/groovy/grails/test/spock/GrailsSpecTestType.groovy#L33
看起来 Geb 插件正在将已弃用的 JUnit4GrailsTestType 添加到执行中: https://github.com/geb/geb/blob/584738cb/integration/geb-grails/scripts/_Events.groovy#L60-L67
这就是功能测试执行两次的原因。
这就是我在 Geb 0.9.2/0.9.3 版本中解决问题的方法。
grails test-app functional:spock
看起来 Geb 版本 0.9.1 没有执行两次测试。
差异似乎是由这个提交引起的: https://github.com/geb/geb/commit/9c71e820
您还应该知道,您不应该在 Grails 2.3.x/2.4.x 中安装 Spock 插件。
关于firefox - Geb Firefox 驱动程序 : why my test runs twice?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14404892/
使用 Geb 时,是否可以在使用浏览器 API(而不是直接下载 API)时设置自定义请求 header 和用户代理? 虽然使用 FirefoxDriver 可以做到这一点(请参阅 here ),但我正
我对整体有点陌生Selenium/Geb事情,所以我可能会有点错误,但我正在尝试获得 exists()以下代码中的方法才能正常工作。 class Question extends Module {
我在设置和测试 Geb 时遇到了麻烦。我有一个简单的 Groovy 脚本: import geb.Browser; println("Test 11") Browser.drive { go
我要测试的网站有一个登陆页面,要求您选择一种语言。您可以通过在 url 中添加额外参数来跳过此问题。我想用 Geb 测试这种行为和 Spock作为测试框架。 所以我有带语言选择的登陆页面: class
我刚刚开始使用带有 webdriver 的 geb 进行自动化测试。 As I understand it ,当我在页面上定义内容时,每次调用内容定义时都应该查找页面元素。 //In the cont
我试图在我的测试中为下面的输入设置一个值,该输入具有默认值 当我在 Geb 页面中设置值时,它似乎附加到默认值 0.00300: grossExTax { $("#c
我正在尝试熟悉 Geb .我正在尝试从 Grails 内部运行它,但这根本不重要,因为我的问题是针对 Geb 的。 我有以下 test目录结构: myapp/ test/
我在 Geb 测试中遇到了很大的困难;如何从下拉列表中选择一个值。我尝试了四种不同的方法,但都不起作用。它要么使测试崩溃,要么直接跳过它。任何帮助将不胜感激 HTML 表单元素(102727 是数据库
出于某种原因,我的代码在应使用phantomjs时尝试使用firefox浏览器。 我的常规代码如下所示: import geb.Browser ... env = System.getenv()
我正在尝试测试.gsp文件生成的页面。为此,我需要访问特定字段的文本值。生成的HTML如下所示: Public? No gsp生成如下所示: Public?
当我尝试使用以下方法创建功能测试时:grails create-functional-test acceptance.tests.Logout我收到此错误,因为Spock尝试使用错误的Groovy版本
我尝试了 jQuery 和 javascript 方法来获取背景或文本颜色,但我总是在下面得到一个异常。 groovy.lang.MissingMethodException: No signatur
我的应用程序使用以下版本: 盖布:0.9.2 Selenium :2.26.0 chalice :2.1 斯波克:0.7 我正在一个带有以下内容的 linux 机器上运行: 火狐:14 Centos:
我有以下设置: 已安装 JDK 和 JRE 6u29 安装了selenium独立版2.8 Groovy 1.8.3 Geb 0.6.1 仅使用 GroovyConsole,我尝试执行 Geb 手册中给
我有一个 Page 类作为 class SignUpPage extends Page { static url = "signup" static at = { waitFor {
我有一个 Grails Cucumber 测试,使用 Geb。 如何获取为当前页面定义的请求参数? 例如鉴于当前页面 url 是 www.foo.com/list?sort=name&order=as
在我的 grails 应用程序中,我使用 Spock 和 Geb 执行功能测试。 由于所有测试都在同一个数据库上运行,我想提供执行 CRUDSpec 类的顺序。如何指定? 例子 第一个类测试博客作者的
我对此处的导航器 API 使用的措辞感到有点困惑 http://www.gebish.org/manual/current/api/geb/navigator/Navigator.html 特别是,我
我无法从列表框中选择值 25 50 100 在我的页面中我有: class TableSectionModule extends Module { static b
我在 GebConfig.groovy 中注册了一个意外的页面,如下所示: unexpectedPages = [EmptySearchResultPage] 页面类如下: import geb.Pa
我是一名优秀的程序员,十分优秀!