Tagged Questions
0
votes
1answer
77 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
1answer
178 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
337 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 ...
2
votes
1answer
142 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
445 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 ...
1
vote
1answer
224 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 ...
2
votes
1answer
611 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 ...