24 lines
941 B
JavaScript
24 lines
941 B
JavaScript
import {
|
|
composeInput, getActiveElementClassList,
|
|
getNthComposeReplyButton,
|
|
getNthComposeReplyInput, getNthReplyButton,
|
|
getNthStatusSelector
|
|
} from '../utils'
|
|
import { loginAsFoobar } from '../roles'
|
|
import { Selector as $ } from 'testcafe'
|
|
|
|
fixture`111-focus.js`
|
|
.page`http://localhost:4002`
|
|
|
|
test('replying to a toot returns focus to reply button', async t => {
|
|
await loginAsFoobar(t)
|
|
await t
|
|
.typeText(composeInput, 'I would like, if I may, to take you on a strange journey', { paste: true })
|
|
.pressKey('ctrl+enter')
|
|
.expect($(`${getNthStatusSelector(1)} .status-content`).innerText).contains('I would like, if I may, to take you on a strange journey')
|
|
.click(getNthReplyButton(1))
|
|
.typeText(getNthComposeReplyInput(1), 'How strange was it?', { paste: true })
|
|
.click(getNthComposeReplyButton(1))
|
|
.expect(getActiveElementClassList()).contains('status-toolbar-reply-button', { timeout: 20000 })
|
|
})
|