init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Then } from "@wdio/cucumber-framework";
import { expect } from "expect-webdriverio";
import AddAnIdentifierModal from "../../screen-objects/components/identity/identity-add.modal.js";
Then(/^user can see Add An Identifier modal$/, async function () {
await AddAnIdentifierModal.loads();
});
Then(/^user can not to see Add An Identifier modal$/, async function () {
await expect(await AddAnIdentifierModal.id).not.toBeDisplayed();
});