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 5
5
6
6
class CoffeeCartTests (BaseCase ):
7
7
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/ " )
9
9
self .js_click ('nav a:contains("Coffee Cart")' )
10
10
self .assert_title ("Coffee Cart" )
11
11
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):
32
32
33
33
def test_click_with_offset (self ):
34
34
self .open ("https://seleniumbase.io/canvas/" )
35
+ if self .undetectable :
36
+ self .skip ("Skip this test in undetectable mode." )
35
37
self .assert_title_contains ("Canvas" )
36
38
self .highlight ("canvas" )
37
39
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):
42
42
or self .browser == "ie"
43
43
or (self .is_chromium () and self .guest_mode and not self .headless )
44
44
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
+ )
45
50
):
46
51
whl_href = self .get_attribute (whl_selector , "href" )
47
52
tar_href = self .get_attribute (tar_selector , "href" )
You can’t perform that action at this time.
0 commit comments