mattermost-mobile/detox/e2e/support/ui/component/send_button.js
Joseph Baylon 4f668f0fdf
MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup (#4959)
* 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>
2020-11-17 10:52:03 -08:00

25 lines
763 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
class SendButton {
testID = {
sendButton: 'post_draft.send.button',
sendButtonDisabled: 'post_draft.send.button.disabled',
}
sendButton = element(by.id(this.testID.sendButton));
sendButtonDisabled = element(by.id(this.testID.sendButtonDisabled));
toBeVisible = async (options = {disabled: false}) => {
if (options.disabled) {
await expect(this.sendButtonDisabled).toBeVisible();
return this.sendButtonDisabled;
}
await expect(this.sendButton).toBeVisible();
return this.sendButton;
}
}
const sendButton = new SendButton();
export default sendButton;