@@ -16,6 +16,7 @@ def create_test_project(self, tester_login):
16
16
performing any of these tests."""
17
17
self .create_sketch (TEST_PROJECT_NAME )
18
18
19
+ @pytest .mark .does_not_require_extension
19
20
def test_alert (self ):
20
21
operation_output = self .driver .find_element_by_id ('operation_output' )
21
22
assert "To program your Arduino from your browser, install" \
@@ -24,6 +25,7 @@ def test_alert(self):
24
25
def test_remove_sketch (self ):
25
26
self .delete_project (TEST_PROJECT_NAME )
26
27
28
+ @pytest .mark .does_not_require_extension
27
29
def test_library_example (self , tester_logout ):
28
30
self .open ('/libraries' )
29
31
library_example = """
@@ -40,6 +42,7 @@ def test_library_example(self, tester_logout):
40
42
if flash_btn .is_enabled ():
41
43
assert False
42
44
45
+ @pytest .mark .does_not_require_extension
43
46
def test_embeded_view (self , tester_logout ):
44
47
self .open ('/embed/microview_test' )
45
48
output = self .driver .find_element_by_id ('cb_cf_operation_output' )
@@ -49,12 +52,14 @@ def test_embeded_view(self, tester_logout):
49
52
if microview_test .is_enabled ():
50
53
assert False
51
54
55
+ @pytest .mark .does_not_require_extension
52
56
def test_walkthrough_page_2 (self , tester_logout ):
53
57
self .open ('/static/walkthrough/page/2' )
54
58
output = self .driver .find_element_by_id ('cb_cf_operation_output' )
55
59
assert "To program your Arduino from your browser, install" \
56
60
" the codebender plugin." in output .text
57
61
62
+ @pytest .mark .does_not_require_extension
58
63
def test_walkthrough_page_3 (self , tester_logout ):
59
64
self .open ('/static/walkthrough/page/3' )
60
65
WebDriverWait (self .driver , TIMEOUT ).until (
@@ -66,7 +71,7 @@ def test_walkthrough_page_3(self, tester_logout):
66
71
current_url = urlparse (self .driver .current_url )
67
72
assert current_url .path == '/static/walkthrough/page/2'
68
73
69
-
74
+ @ pytest . mark . does_not_require_extension
70
75
def test_walkthrough_page_4 (self , tester_logout ):
71
76
self .open ('/static/walkthrough/page/4' )
72
77
WebDriverWait (self .driver , TIMEOUT ).until (
0 commit comments