File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,16 @@ def test_hack_search(self):
12
12
self .assert_element ('input[title="Search"]' )
13
13
self .set_attribute ('[action="/search"]' , "action" , "//bing.com/search" )
14
14
self .set_attributes ('[value="Google Search"]' , "value" , "Bing Search" )
15
- self .type ('input[title="Search"]' , "SeleniumBase GitHub" )
15
+ self .type ('input[title="Search"]' , "SeleniumBase GitHub Docs Install " )
16
16
self .sleep (0.5 )
17
17
self .js_click ('[value="Bing Search"]' )
18
18
self .highlight ("h1.b_logo" )
19
19
help_docs_install_link = 'a[href*="seleniumbase.io/help_docs/install"]'
20
20
if self .is_element_visible (help_docs_install_link ):
21
21
self .highlight_click (help_docs_install_link )
22
- self .switch_to_newest_window ()
23
22
self .assert_text ("Install SeleniumBase" , "h1" )
24
23
self .click_link_text ("GitHub branch" )
25
24
self .highlight_click ('a[href*="github.com/seleniumbase/SeleniumBase"]' )
26
- self .switch_to_newest_window ()
27
25
self .assert_element ('[href="/seleniumbase/SeleniumBase"]' )
28
26
self .assert_true ("seleniumbase/SeleniumBase" in self .get_current_url ())
29
27
self .click ('a[title="examples"]' )
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ python_files = test_*.py *_test.py *_tests.py *_suite.py *_test_*.py
18
18
python_classes = Test* *Test* *Test *Tests *Suite
19
19
python_functions = test_*
20
20
21
- # Here are the pytest markers used in the example tests:
21
+ # Here are some common pytest markers:
22
+ # (Some are used in the example tests.)
22
23
# (pytest v4.5.0 and newer requires marker registration to prevent warnings.)
23
24
# (Future versions of pytest may turn those marker warnings into errors.)
24
25
markers =
@@ -32,7 +33,11 @@ markers =
32
33
offline: custom marker
33
34
develop: custom marker
34
35
qa: custom marker
36
+ ci: custom marker
37
+ e2e: custom marker
35
38
ready: custom marker
39
+ smoke: custom marker
40
+ deploy: custom marker
36
41
active: custom marker
37
42
master: custom marker
38
43
release: custom marker
You can’t perform that action at this time.
0 commit comments