From 671bff2828553b4296906c8f628e578bba28d5cc Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 12 Apr 2010 08:56:08 +0000 Subject: [PATCH] MINOR: fix javscript syntax that can confuse ie (from r86395) (from r96776) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102472 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/cuke/step_definitions/content.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/cuke/step_definitions/content.rb b/tests/cuke/step_definitions/content.rb index 7bcbad4f..379671dd 100644 --- a/tests/cuke/step_definitions/content.rb +++ b/tests/cuke/step_definitions/content.rb @@ -45,8 +45,11 @@ end Given /create a new page using template \"(.*)\"/i do |type| Given 'I load the root node (ajax)' + puts "Clicking the create button" And 'I click the "Create" button' + puts "Selecting #{type} from PageType" And "I select \"#{type}\" from \"PageType\"" + puts "done selecting" And 'I click the "Go" button (ajax)' And 'I click the "Create" button' end