Merge branch 'fixed-failing-markdown-input-tests' into 'master'

Fixed failing markdown button tests

See merge request !8471
This commit is contained in:
Rémy Coutable 2017-01-06 17:38:59 +00:00
commit 2dec1772f5
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ feature 'Issue markdown toolbar', feature: true, js: true do
find('#note_note').native.send_key(:enter)
find('#note_note').native.send_keys('bold')
page.evaluate_script('document.getElementById("note_note").setSelectionRange(4, 9)')
page.evaluate_script('document.querySelectorAll(".js-main-target-form #note_note")[0].setSelectionRange(4, 9)')
first('.toolbar-btn').click
@ -28,7 +28,7 @@ feature 'Issue markdown toolbar', feature: true, js: true do
find('#note_note').native.send_key(:enter)
find('#note_note').native.send_keys('underline')
page.evaluate_script('document.getElementById("note_note").setSelectionRange(4, 50)')
page.evaluate_script('document.querySelectorAll(".js-main-target-form #note_note")[0].setSelectionRange(4, 50)')
find('.toolbar-btn:nth-child(2)').click