diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-23 12:41:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-23 12:41:31 +0000 |
commit | 8a1e09d17b7e2fed03bbc67cb978d42fc155b822 (patch) | |
tree | 245b2d4d015492356f1e0d9966d13ec4f2d64679 /test/system/timelog_test.rb | |
parent | 530eef96033bf1474157bbc9c7739ff8dc7e2ae4 (diff) | |
download | redmine-8a1e09d17b7e2fed03bbc67cb978d42fc155b822.tar.gz redmine-8a1e09d17b7e2fed03bbc67cb978d42fc155b822.zip |
Use CSS selector to find move left/right buttons.
git-svn-id: http://svn.redmine.org/redmine/trunk@16865 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/system/timelog_test.rb')
-rw-r--r-- | test/system/timelog_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/timelog_test.rb b/test/system/timelog_test.rb index e1acd0f51..8624fffed 100644 --- a/test/system/timelog_test.rb +++ b/test/system/timelog_test.rb @@ -87,10 +87,10 @@ class TimelogTest < ApplicationSystemTestCase visit '/settings?tab=timelog' # Remove a column select 'Comment', :from => 'Selected Columns' - click_on "←" + page.first('input[type=button].move-left').click # Add a column select 'Tracker', :from => 'Available Columns' - click_on "→" + page.first('input[type=button].move-right').click click_on 'Save' # Display the list with updated settings |