From 7ba9cb1da6364aba9500ec60bcb25b9ad93e6773 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Tue, 24 Oct 2023 19:06:43 +0000 Subject: Use assert_selector which automatically waits until the HTML condition is met (#39109). Patch by Takashi Kato. git-svn-id: https://svn.redmine.org/redmine/trunk@22372 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/system/issues_test.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test/system/issues_test.rb') diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index a66b19e38..f0a749238 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -443,8 +443,8 @@ class IssuesSystemTest < ApplicationSystemTestCase # wait for ajax response assert page.has_select?('issue_project_id', selected: 'OnlineStore') + assert_selector 'input[type=submit]', count: 2 submit_buttons = page.all('input[type=submit]') - assert_equal 2, submit_buttons.size assert_equal 'Move', submit_buttons[0].value assert_equal 'Move and follow', submit_buttons[1].value @@ -507,8 +507,9 @@ class IssuesSystemTest < ApplicationSystemTestCase # wait for ajax response assert page.has_select?('issue_project_id', selected: 'OnlineStore') + assert_selector 'input[type=submit]', count: 2 submit_buttons = page.all('input[type=submit]') - assert_equal 2, submit_buttons.size + assert_equal 'Copy', submit_buttons[0].value assert_equal 'Copy and follow', submit_buttons[1].value page.find('#issue_priority_id').select('High') @@ -645,7 +646,7 @@ class IssuesSystemTest < ApplicationSystemTestCase wait_for_ajax # assert log time form does not exist anymore for user without required permissions on the new project - assert_not page.has_css?('#log_time') + assert page.has_no_css?('#log_time') end def test_update_issue_form_should_include_add_notes_form_only_for_users_with_permission @@ -665,6 +666,6 @@ class IssuesSystemTest < ApplicationSystemTestCase wait_for_ajax # assert add notes form does not exist anymore for user without required permissions on the new project - assert_not page.has_css?('#add_notes') + assert page.has_no_css?('#add_notes') end end -- cgit v1.2.3