OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/step_definitions/custom_overview_page_steps.rb

62 lines
4.2 KiB

Given /^I start editing the overview page(?: again)?$/ do
driver.find_element(:link, "Personalize this page").click
# ERROR: Caught exception [ERROR: Unsupported command [dragAndDropToObject]]
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
end
Then /^I should be able to change things and see my changes when I finish$/ do
driver.find_element(:css, "#list-top > #block_issuetracking").should be_displayed
# ERROR: Caught exception [ERROR: Unsupported command [dragAndDropToObject]]
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
driver.find_element(:css, "#list-hidden > #block_members").should be_displayed
# ERROR: Caught exception [ERROR: Unsupported command [select]]
driver.find_element(:link, "Add").click
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
(driver.find_elements(:css, "#block-select > option[value='timelog'][disabled]").size).should == 1
driver.find_element(:css, "#list-hidden > #block_timelog").should be_displayed
# ERROR: Caught exception [ERROR: Unsupported command [dragAndDropToObject]]
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
driver.find_element(:css, "#list-top > #block_timelog").should be_displayed
# ERROR: Caught exception [ERROR: Unsupported command [selectWindow]]
driver.find_element(:css, "#block_wiki > div > a.icon.icon-del").click
# ERROR: Caught exception [ERROR: Unsupported command [getConfirmation]]
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
(driver.find_elements(:css, "#block-select > option[value='wiki'][disabled]").size).should == 0
driver.find_element(:link, "Back").click
driver.find_element(:css, "#list-top > .mypage-box > .issues.overview").should be_displayed
driver.find_element(:css, "#list-top > .mypage-box > .total-hours").should be_displayed
(driver.find_elements(:css, "#list-left > .mypage-box > .wiki").size).should == 0
end
Then /^I should be able to add a teaser element with custom text$/ do
driver.find_element(:link, "Add").click
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
(driver.find_element(:css, "#list-hidden > #block_a > .handle > #a-preview-div > h2").text).should == "Add teaser ..."
driver.find_element(:css, "#list-hidden > #block_a > .handle > #a-preview-div").should be_displayed
driver.find_element(:link, "Edit").click
driver.find_element(:css, "#list-hidden > #block_a > .handle > #a-form-div").should be_displayed
driver.find_element(:id, "block_title_a").clear
driver.find_element(:id, "block_title_a").send_keys "NewTitle"
driver.find_element(:id, "a-form-submit").click
(driver.find_element(:css, "#list-hidden > #block_a > .handle > #a-preview-div > h2").text).should == "NewTitle"
driver.find_element(:link, "Edit").click
driver.find_element(:id, "textile_a").clear
driver.find_element(:id, "textile_a").send_keys "NewContent"
driver.find_element(:link, "Save").click
(driver.find_element(:css, "#list-hidden > #block_a > .handle > #a-preview-div > p").text).should == "NewContent"
# ERROR: Caught exception [ERROR: Unsupported command [dragAndDropToObject]]
!60.times{ break unless (driver.find_element(:css, "#ajax-indicator").displayed? rescue true); sleep 1 }
driver.find_element(:css, "#list-right > #block_a").should be_displayed
(driver.find_element(:css, "#list-right > #block_a > .handle > #a-preview-div > p").text).should == "NewContent"
(driver.find_element(:css, "#list-right > #block_a > .handle > #a-preview-div > h2").text).should == "NewTitle"
driver.find_element(:link, "Back").click
(driver.find_element(:css, "#list-right > .mypage-box > p").text).should == "NewContent"
end
Then /^I should be able to delete a teaser element$/ do
driver.find_element(:css, "#block_a > div > a.icon.icon-del").click
# ERROR: Caught exception [ERROR: Unsupported command [getConfirmation]]
driver.find_element(:link, "Back").click
(driver.find_elements(:css, "#list-right > .mypage-box > p").size).should == 0
end