mattermost-mobile/detox/e2e/support/ui/component/post.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

18 lines
518 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
class Post {
testID = {
postPrefix: 'post.',
}
getPost = (postTypePrefix, postId, text) => {
if (text) {
return element(by.id(`${postTypePrefix}${this.testID.postPrefix}${postId}`).withDescendant(by.text(text)));
}
return element(by.id(`${postTypePrefix}${this.testID.postPrefix}${postId}`));
}
}
const post = new Post();
export default post;