Skip to content

Commit

Permalink
Updated Unit Test for #2747
Browse files Browse the repository at this point in the history
Signed-off-by: DCoomer <[email protected]>
  • Loading branch information
DCoomer authored Dec 26, 2024
1 parent 080daed commit d5570ac
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/unit-tests/click.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,14 @@ describe(test_name, () => {
});
});

describe("With proximity selector and Options Object", () => {
it("should click", async () => {
await click("Click with proximity", {waitForNavigation: true}, below("Proximity marker"));
expect(await text("Click works with proximity selector and Options Object.").exists()).to.be
.true;
});
});

describe("Text accross element", () => {
it("should click", async () => {
await click("Text accross elements");
Expand Down

0 comments on commit d5570ac

Please sign in to comment.