File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 55
66class CoffeeCartTests (BaseCase ):
77 def test_1_verify_nav_link_to_coffee_cart (self ):
8- self .open ("https://seleniumbase.io/" )
8+ self .open ("https://seleniumbase.io/help_docs/customizing_test_runs/ " )
99 self .js_click ('nav a:contains("Coffee Cart")' )
1010 self .assert_title ("Coffee Cart" )
1111 self .assert_element ('h4:contains("Espresso")' )
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ def test_canvas_click_from_center(self):
3232
3333 def test_click_with_offset (self ):
3434 self .open ("https://seleniumbase.io/canvas/" )
35+ if self .undetectable :
36+ self .skip ("Skip this test in undetectable mode." )
3537 self .assert_title_contains ("Canvas" )
3638 self .highlight ("canvas" )
3739 rgb = self .get_pixel_colors ()
Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ def test_download_files_from_pypi(self):
4242 or self .browser == "ie"
4343 or (self .is_chromium () and self .guest_mode and not self .headless )
4444 or (self .undetectable and (self .headless or self .headless2 ))
45+ or (
46+ self .is_chromium ()
47+ and int (self .get_chromium_version ()) >= 110
48+ and self .headless
49+ )
4550 ):
4651 whl_href = self .get_attribute (whl_selector , "href" )
4752 tar_href = self .get_attribute (tar_selector , "href" )
You can’t perform that action at this time.
0 commit comments