This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
test/end-to-end-tests/src/usecases Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ async function createDm(session, invitees) {
6464 const startChatButton = await dmsSublist . $ ( ".mx_RoomSublist_auxButton" ) ;
6565 await startChatButton . click ( ) ;
6666
67- const inviteesEditor = await session . query ( '.mx_InviteDialog_editor textarea ' ) ;
67+ const inviteesEditor = await session . query ( '.mx_InviteDialog_editor input ' ) ;
6868 for ( const target of invitees ) {
6969 await session . replaceInputText ( inviteesEditor , target ) ;
7070 await session . delay ( 1000 ) ; // give it a moment to figure out a suggestion
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ module.exports = async function invite(session, userId) {
3131 }
3232 const inviteButton = await session . query ( ".mx_MemberList_invite" ) ;
3333 await inviteButton . click ( ) ;
34- const inviteTextArea = await session . query ( ".mx_InviteDialog_editor textarea " ) ;
34+ const inviteTextArea = await session . query ( ".mx_InviteDialog_editor input " ) ;
3535 await inviteTextArea . type ( userId ) ;
3636 const selectUserItem = await session . query ( ".mx_InviteDialog_roomTile" ) ;
3737 await selectUserItem . click ( ) ;
You can’t perform that action at this time.
0 commit comments