Questions tagged [easyb]

easyb is a behavior driven development framework for the Java platform. By using a specification based Domain Specific Language, easyb aims to enable executable, yet readable documentation.

easyb is a behavior driven development framework for the Java platform. By using a specification based Domain Specific Language, easyb aims to enable executable, yet readable documentation.

25 questions
1
vote
2 answers

"Test a little, code a little" in Grails project, using Easyb or Spock, in IntelliJ

My original issue is described perfectly by this post: I want to follow TDD: write a small test watch it fail write just enough code to make it succeed watch it succeed repeat I am working on a Grails project in IntelliJ. If all I want is to write…
Bukov
  • 650
  • 8
  • 19
0
votes
1 answer

Using ant to run easyB stories in parallel

How do I pass the switch to run scenarios\stories in parallel to the ant task ? Side Q: Does it run scenarios in parallel ? or stories ? How do I configure number of the threads etc. ?
RN.
  • 997
  • 4
  • 14
  • 31
0
votes
1 answer

Easyb with Data-driven Development?

in the latest version of easyb (0.9.8.2) it seems to be possible to have "where" and "example" statements to make a Data-driven testing possible. In my POM, I'm using the latest version of the easyb plugin
sebarmeli
  • 17,949
  • 7
  • 35
  • 40
0
votes
3 answers

Is it possible to separate easyb's Groovy from plain English scenario definitions?

Here's an example easyb scenario from the easyb website: before "start selenium", { given "selenium is up and running", { selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://acme.racing.net/greport") selenium.start() …
Armand
  • 23,463
  • 20
  • 90
  • 119
0
votes
1 answer

Grails + Selenium + EasyB +spring-security-core: ifAnyGranted Isn't Working

Grails 1.3.5 and have selenium-rc, easyb, and spring-security-core plugins installed. Everything seems to work really well except this one case I've run into. I have a page I am testing which has the following markup:
Gregg
  • 34,973
  • 19
  • 109
  • 214
0
votes
1 answer

Grails-Write Selenium code inside a EasyB scenario

I am trying to write some selenium inside my scenario's. However, when I try to start Selenium using the following code: before "start selenium", { given "selenium is up and running", { selenium = new DefaultSelenium("localhost", 4444, "*firefox",…
WaZ
  • 1,757
  • 4
  • 19
  • 27
0
votes
1 answer

Groovy Compilation error :Unrecognized Windows Sockets error

Environment : Jenkins Server (Linux) Senkins slave agent (Windows ) Build :Gradle Project : EasyB ,Selenium,Groovy I am getting a compilation error while trying to compile my easyB + selenium project. We use gradle to manage the project. The…
RN.
  • 997
  • 4
  • 14
  • 31
0
votes
1 answer

How to integrate easybib form Decorators in Zend Framework?

I am newbie to Zend framework. I want to learn Decorators and Bootstrap. I have downloaded zip file from https://github.com/easybib/EasyBib_Form_Decorator link. I want to integrate easybib form decorators in my zend project, but I dont know how to…
Deepu
  • 2,590
  • 19
  • 52
  • 74
0
votes
1 answer

Slowing down the Selenium process in easyb

I m trying to slow down the BDD process in easyb and automated selenium , using `selenium.waitForPageToLoad("3000000")` line but it doesnt seems to be working is there any thing else i need to add between each line to slow down each steps…
sam1132
  • 181
  • 1
  • 2
  • 9
0
votes
1 answer

Executing maven-easyb-plugin as part of the integration phase instead if the test phase

Is it possible to execute the maven-easyb-plugin as part of the integration phase instead of the test phase? I would like to run the easyb tests once project is deployed to a webserver.
Ilyas Patel
  • 400
  • 2
  • 11
  • 27
1
2