* MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup * Fix merge issues * Fix more issues * Fixed new line * Remove redundant check * Updated instance to getElement Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
class CreateChannelScreen {
|
|
testID = {
|
|
createChannelScreen: 'create_channel.screen',
|
|
nameInput: 'edit_channel.name.input',
|
|
purposeInput: 'edit_channel.purpose.input',
|
|
headerInput: 'edit_channel.header.input',
|
|
createButton: 'edit_channel.create.button',
|
|
backButton: 'screen.back.button',
|
|
}
|
|
|
|
createChannelScreen = element(by.id(this.testID.createChannelScreen));
|
|
nameInput = element(by.id(this.testID.nameInput));
|
|
purposeInput = element(by.id(this.testID.purposeInput));
|
|
headerInput = element(by.id(this.testID.headerInput));
|
|
createButton = element(by.id(this.testID.createButton));
|
|
backButton = element(by.id(this.testID.backButton));
|
|
|
|
toBeVisible = async () => {
|
|
await expect(this.createChannelScreen).toBeVisible();
|
|
|
|
return this.createChannelScreen;
|
|
}
|
|
|
|
back = async () => {
|
|
await this.backButton.tap();
|
|
await expect(this.createChannelScreen).not.toBeVisible();
|
|
}
|
|
}
|
|
|
|
const createChannelScreen = new CreateChannelScreen();
|
|
export default createChannelScreen;
|