We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 557af0a commit 29f9ccaCopy full SHA for 29f9cca
apps/chat-e2e/src/ui/webElements/groupEntity.ts
@@ -19,7 +19,7 @@ export class GroupEntity extends BaseElement {
19
`${ChatSettingsSelectors.groupEntityName}:text('${entity.name}')`,
20
).getElementLocator();
21
if (entity.version) {
22
- if (entity.version.match(/^\d+$/g)) {
+ if (entity.version.match(/^(\d+|\d{4}-\d{2}-\d{2})$/g)) {
23
entityName = new BaseElement(
24
this.page,
25
`${ChatSettingsSelectors.groupEntityName}:text('${entity.name} ${entity.version}')`,
0 commit comments