Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-10-10 01:19:43 +0300
committerMike Greiling <mike@pixelcog.com>2017-10-10 01:19:43 +0300
commit73bb0029a3e4df66d74948cc0fc3ff693d8385fe (patch)
tree25da124718a2b2cf35761361c80c78b1ea1698f7 /spec/features/boards
parent301204c2a3e663d87809ba2595e7388b5d3463ff (diff)
chrome cannot send_keys unless the element is focusable
Diffstat (limited to 'spec/features/boards')
-rw-r--r--spec/features/boards/boards_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb
index 83ea9ee3b8b..08581bf19ba 100644
--- a/spec/features/boards/boards_spec.rb
+++ b/spec/features/boards/boards_spec.rb
@@ -518,7 +518,7 @@ describe 'Issue Boards', :js do
end
it 'allows user to use keyboard shortcuts' do
- find('.boards-list').native.send_keys('i')
+ find('body').native.send_keys('i')
expect(page).to have_content('New Issue')
end
end