File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
examples/migration/raw_selenium/to_playwright/02_adapter_pattern Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments