0
votes
1answer
63 views

Spock + GEB vs. Robot Framework

Good day for everyone. Previously I used Robot Framework to automate testing of applications, but a new client asked pay attention to Spock + GEB. I've never used it, but I need to quickly compare ...
0
votes
1answer
35 views

Save current url with geb

I work with tests on geb and i have problem. I need to save/print the address of the current page (function SaveUrl()). Spock Test: class TestSpec extends GebReportingSpec { def "Google"() { ...
0
votes
4answers
69 views

Is it possible to assert that the page has stopped scrolling in a waitFor

I have a page where I click a "change" link which displays another section. When this happens, the page scrolls vertically a bit so that the visible section is somewhat centered on the screen. My ...
0
votes
1answer
99 views

Subsequent calls to Geb Spock Test from GroovyConsole fail with UnreachableBrowserException

I'm running the below script (a GebReportingSpec test case) from within GroovyConsole.exe. It runs properly the first time, when GroovyConsole is launched. It opens up FF, runs the scenario, and then ...
0
votes
3answers
54 views

Creating a Geb Module for UL LI's

I'm attempting to create a geb module that represents an unordered list of elements. I've seen examples for how to do this with tables but I'm having a hard time translating that to UL->LI ...
0
votes
2answers
101 views

Get Element By Xpath (Geb)

I have problem with getting Element by Xpath. I use Spock with Geb. I have HTML: <form class="form" style="display: block;"> <div class="crm-field"> <div class="req label"> <span ...
1
vote
1answer
105 views

Check the url in a Geb/Spock test

In my Spock functional test, I want to test that the current location of the browser is not a certain url. I know I can do: try { at(PageWithUrlIDontWant) // do something } catch ...
2
votes
1answer
80 views

Strange issue when clicking buttons in Geb with Spock

The issue is that I'm able to click a button, but the process that the button should execute then just hangs, and doesn't happen. When clicking the "post" button, for example, the button should turn ...
2
votes
3answers
629 views

Upgrading from Grails 2.0.3 to 2.2.1: Server access Error: Connection refused

I'm trying to upgrade from Grails 2.0.3 to 2.2.1 as part of my Happy Trails application. https://github.com/jamesward/happytrails/tree/grails2 The first thing I struggled with was getting Geb/Spock ...
0
votes
1answer
70 views

Geb Configuration

This seems like it should be pretty straightforward, but I am not seeing how to get access to values in my GebConfig.groovy file. I've tried the following: userName = "myUserName" properties = { ...
2
votes
1answer
81 views

Geb Reporter / Extension to retrieve Test Status

I am attempting to replace some custom java selenium extensions by utilizing geb. I have hit a bit of a brick wall when I attempt to utilize a grid in the cloud (i.e. SauceLabs). When my tests ...
1
vote
1answer
102 views

Spock/Geb test pollution

I'm getting some sort of test pollution. When I run failing tests individually, they pass. When I run them all together, I get errors. The errors are not related to database. I can't understand the ...
0
votes
1answer
159 views

What Spock, Geb and Selenium versions should be used with Grails 2.2?

Has anyone managed to get the Geb and Spock plugins working with Grails 2.2? If so, what exact versions of Geb, Selenium and Spock are you using?
0
votes
1answer
63 views

How to select label text in GEB?

I have a select drop down which will display an error if a value is not selected. <div class="field contain" > <select name="myselect" id="myselect" class="error" > <option ...
0
votes
0answers
171 views

Selenium Webdriver/Geb/Spock - how to stop following HTTP 302 redirects

I am checking clicking through from a link. I know the URL to go to (from an href destination). Clicking on the desired element takes to that URL and the user is immediately redirected a few times ...
0
votes
1answer
155 views

Geb how to auto populate username/password prompts

I'm using geb with spock as my acceptance test framework. Everything is going great except that there is an issue with a couple of tests where when it redirects to another website we are prompted to ...
0
votes
1answer
53 views

Extending spock specification gives error in code

Geb Groovy and spock gurus, could you please help me understand why the following code doesn't work for me ( the variable 'closr' gives a null value) import geb.Browser import ...
0
votes
1answer
25 views

Override Features in extended Specs

I'm attempting to setup a testing scenario where I can publish a JAR of tests that will run the same sets of tests 95% of the time but there will be 5% of the tests that need to either override or ...
0
votes
1answer
87 views

In Geb, how to assign a list of inputs to a list of HTML input entities

I have a question, I’ve got a CSS selector that returns back a list of input objects (all text inputs) and I’d like to easily set the values to them. I’d like to be able to do something like this: ...
1
vote
1answer
372 views

Learning GEB and Spock

I am a manual tester trying to learn GEB and Spock. To learn these do I have to have prior knowledge of java or groovy? I have been reading the book of GEB, What are the prerequisites, books or ...
1
vote
1answer
84 views

Pass a parameter to Geb's static at() while in a Spock Specification

Is it possible for me to pass a parameter to “at()” so I can use a parameter in a module? Here is my scenario: Module for a page that has some common detail about a product (ProductModule, this has ...
2
votes
1answer
277 views

Geb + Spock + groovy setup

So I've been attempting to get these tools running together, but I can't seem to get things setup properly. Each time I am presented with the following error: The project was not built since its ...
0
votes
2answers
216 views

How to Report Results to Sauce Labs using Geb/Spock?

I want to use the Sauce Labs Java REST API to send Pass/Fail status back to the Sauce Labs dashboard. I am using Geb+Spock, and my Gradle build creates a test results directory where results are ...
0
votes
1answer
63 views

Make Grails Geb tests transactional

I need my Geb tests to be transactional (to rollback at the end of each test), how can I achieve that? I tried 'static transactional = true' and the @Transactional annotation in both class and ...
3
votes
1answer
174 views

Determine order of execution of Spock tests

Is there a way to set the order in which tests are executed within an Spock Specification? For example: class MySpec extends IntegrationSpec { def 'test A'... def 'test B'... } I want ...
0
votes
1answer
162 views

difference between geb.env and geb.driver

I am trying to find out the difference between geb.driver option against geb.env. I could not find any concrete documentation on them. I could understand that geb.env is similar to grails.env ...
1
vote
1answer
303 views

Grails Spock tests execution order

In my grails application I use Spock and Geb to perform functional tests. Since all test run on the same database, I would like to provide order in which CRUDSpec classes being executed. How this can ...
0
votes
1answer
105 views

Using Spock, how do you run a particular feature via the grails command line?

I am running Spock tests for unit and functional tests. Awesome library. I am wondering how to run a specific feature of a Spock Spec from the grails command line. I know how to run all spock tests ...
0
votes
1answer
77 views

Logging a right click with spock-geb?

I need to test a right click on a map to drop a marker with Geb. I haven't found any documentation saying how to do this. Does anyone know?
2
votes
1answer
133 views

How do I run a subset of spock functional tests in grails?

In some other testing frameworks I'm used to tagging tests, eg @really_slow, @front_end And then running different batches of tests, like I might want to set up a build slave to run all the ...
0
votes
2answers
397 views

In Geb, what is the difference between displayed and present?

I am writing functional tests and dealing with a modal window that fades in and out. What is the difference between displayed and present? For example I have: settingsModule.container.displayed and ...
3
votes
1answer
1k views

How can I get WebDriver to dismiss a Firefox Security Alert?

I am writing a test script using spock, geb, and WebDriver. The script submits a form on an insecure page. The page submits to a secure HTTPS URL. Firefox shows a warning for this, specifcally: ...
2
votes
1answer
146 views

How can Spock be made to retry failed Geb tests?

I have functional tests for a Grails app which use Geb and Spock. Occasionally, a functional test will fail for timeouts or other sporadic behavior. In previous projects using TestNG, I'd have a ...
1
vote
1answer
199 views

How would you encapsulate the login action of a user so that you can reuse it for your tests when writing Geb/Spock tests for your Grails app?

I am beginning to write functional tests with Geb and Spock. I wrote a few simple ones for the login of my application but now, I would like to encapsulate the login process so I can test pages that ...
1
vote
4answers
319 views

Spock error: cannot find shared instance field

I just cloned the example project geb-grails-example and facing an error related to Spock. When running the grails (2.0.3) command test-app, I get the following error: | Server running. Browse to ...
0
votes
1answer
470 views

grails “test-app” fails for functional geb+spock test but “test-app -functional” is successfull

I have some problems regarding functional testing in Grails using GEB+Spock. If i run "test-app" it always fails, but if i run "test-app -integration" before "test-app" it works! The following ...
1
vote
0answers
121 views

Page transition not happening when I click on hyperlink with Geb

When I use searchResults(0).ApplicationId.click(ApplicationSummaryPage) the transition happens to ApplicationSummaryPage but when I use this searchResults(0).ApplicationId.click() I doesn't ...
0
votes
1answer
195 views

Definition of page component template '$' of 'ApplicationSummaryPage' is invalid, params must be either a Closure, or Map and Closure

Below is my Geb Page, Spec and Error. I am not sure where and what the issue is. When I remove the below from the ApplicationSummaryPage then I doesn't get this error. ds(wait: true) { module ...
0
votes
3answers
157 views

CSS selector help for below structure

I have to find the anchor "a" nested under table with class as table.ic-table-creditReportProduct table tr. I tried but doesn't seem to work. Any ideas where the problem might be or another way to ...
0
votes
1answer
64 views

“to SearchPage” call from the “then” block

Why is the below Geb test failing with the below error. Can't I call to SearchPage in the then block? Condition not satisfied: to SearchPage | null at test.LogoutSpec.Verify that the logout ...
0
votes
1answer
359 views

Confusion in assigning form values for input type text

Below are my Page and Spec. I am able to enter the value for firstName but I am getting the below error for lastName. I thought we can assign the value using '=' operator based on Geb doc here ...
0
votes
1answer
220 views

Is this the right way to use “at” closure in Geb

Scenario: I have a login page which uses ajax to validate a user and if invalid login, it stays on the same page. I am wondering if this is the correct way to use the at in Geb or I can improvise on ...
1
vote
1answer
207 views

Can I run a spock test over and over with different values for a form?

I'm new to Spock and Geb and am using them in my Grails 1.3.7 application. I have a LoginSpec and LoginPage working. Now what I want to do is execute the LoginSpec many times, specifying several ...
0
votes
2answers
521 views

Forked groovyc returned error code: -1073741819

I wanted to try out geb/spock for some acceptance testing and started with an initial gradle build script below: apply plugin: "groovy" repositories { mavenCentral() } configurations { ...
2
votes
1answer
578 views

I can't run a simple Grails functional test using Geb and spock

I'm asking for help because I don't know what to do with this error... So first of all let me show the stacktrace I get when running my really simple test, what is weird is that my test doesn't seem ...
0
votes
2answers
193 views

Weak failure trace when using page object pattern with spock and geb

When using spock+geb you can assert that you are on expected page by assertion e.g.: assert title == 'Sign In' and you get a nice failure trace if assertion fails: Condition not satisfied: title ...
0
votes
2answers
1k views

How to pass Grails test with Geb and Spock? (using grails-functional-test-development)

Please help. I have page login/auth.gsp with the following code inside the body <div id="page-wrap"> <div class="login-block"> <g:if test="${flash.message}"> <h3 ...
2
votes
2answers
1k views

How to use Geb to check element attribute value after page event

After a bit of help here, I am writing a functional web test using Geb and want to test the disabled attribute value of an form submit button both before and after an event has occurred, the flow ...
3
votes
2answers
1k views

How do you get the sessionFactory in a Grails Geb/Spock test case?

I think I need to flush the hibernate session in a GebSpec test, and so I want to get the sessionFactory. It looks like it should be injected but when I do something like this:- class MySpec extends ...