* 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>
18 lines
518 B
JavaScript
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;
|