[19:43:30] hi chrismcmahon [19:44:04] If I want to test something in the middle of a test, and then do some more actions and test again - is that possible? [19:44:07] with something like [19:44:12] given I click x [19:44:21] ... [19:44:25] no, actually: [19:44:27] when I click X [19:44:34] then Y should be Z [19:44:41] when I click A [19:44:46] then B should be C [19:44:56] -- all of this in one scenario? [19:47:22] aharoni: usually you'd do that sort of thing with thoughtful use of the 'And' clause. for example: [19:48:16] When I click X/ And Z is in the page/ And I click A/ Then B should be C [19:49:07] When I click X/ And I see Z in the page/ And I click A/ Then B should be C [19:50:03] ok thanks