From c12b6aad3370717fb226abfe53b5da65be175e49 Mon Sep 17 00:00:00 2001 From: Colm O'Connor Date: Mon, 11 Dec 2023 12:52:59 +0000 Subject: [PATCH] EXAMPLES : Remove comment. --- examples/website/hitch/engine.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/website/hitch/engine.py b/examples/website/hitch/engine.py index 4dfe6ee..15d174d 100644 --- a/examples/website/hitch/engine.py +++ b/examples/website/hitch/engine.py @@ -118,11 +118,9 @@ def load_website(self, url): def enter(self, on, text): self._pcm.element(on).fill(text) - # self._page.get_by_test_id(slugify(on)).fill(text) def click(self, on): self._pcm.element(on).click() - # self._page.get_by_test_id(slugify(on)).click() @validate(which=Int()) @no_stacktrace_for(AssertionError)