Skip to content

Commit bcc06c7

Browse files
committed
Update a ReadMe
1 parent d3851ab commit bcc06c7

File tree

1 file changed

+3
-3
lines changed
  • examples/migration/raw_selenium/to_playwright/02_adapter_pattern

1 file changed

+3
-3
lines changed

examples/migration/raw_selenium/to_playwright/02_adapter_pattern/ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class RawSeleniumAdapter(TestCase):
5555
)
5656
except Exception:
5757
raise Exception(
58-
"Element {%s} was not visible after %s seconds!"
58+
"Element (%s) was not visible after %s seconds!"
5959
% (selector, timeout)
6060
)
6161

@@ -68,7 +68,7 @@ class RawSeleniumAdapter(TestCase):
6868
)
6969
except Exception:
7070
raise Exception(
71-
"Element {%s} was not visible/clickable after %s seconds!"
71+
"Element (%s) was not visible/clickable after %s seconds!"
7272
% (selector, timeout)
7373
)
7474

@@ -81,7 +81,7 @@ class RawSeleniumAdapter(TestCase):
8181
)
8282
except Exception:
8383
raise Exception(
84-
"Element {%s} was still visible after %s seconds!"
84+
"Element (%s) was still visible after %s seconds!"
8585
% (selector, timeout)
8686
)
8787

0 commit comments

Comments
 (0)