Say I wanted to have a test-server which automatically picks up the latest build (from the build server) and executes all the integration tests in that build.
What are some strategies for writing BDD tests, which can test behaviour that relies on certain data being in the system?
Using GEB I was using the Page Object Pattern to encapsulate information about the different pages statically.
I repeatedly hear BDD enthusiasts advocate using both SpecFlow and MSpec in the same project. Apparently SpecFlow is more suitable for outside-in/UI tests. (For example, web tests which simulate mou
BDD has been touted as \"TDD done right\". However TDD is widely used with unit tests, rather than end-to-end integration tests.
I can\'t work out why my web based cucumber tests never terminate. All step definitions pass but the browser never exit on the last step and therefore my script is hanging.
I have a question about using selenium in cucumber. here is the cucumber features: @selenium @javascript
I am trying to get started with BDD and found a view blog posts about MSpec and SpecFlow. I\'m currently not quite sure when I would use which and what the advantages/disadvantages of either framework
I have a form where several fields have to be filled in. However, only one field is compulsory. So, I came up with the following spec:
I\'m new to BDD, and I\'m finding alot of instances where I\'m adding instance variables to attr_accessor only so that my tests have an easy way to validate whether they are in the state that they sho