File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ def test_github(self):
20
20
self .open ("https://github.com/" )
21
21
self .type ("input.header-search-input" , "SeleniumBase\n " )
22
22
self .slow_click ('a[href="/seleniumbase/SeleniumBase"]' )
23
+ self .click_if_visible ('[data-action="click:signup-prompt#dismiss"]' )
23
24
self .assert_element ("div.repository-content" )
24
25
self .assert_text ("SeleniumBase" , "h1" )
25
26
self .slow_click ('a[title="seleniumbase"]' )
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ def test_locate_rows_with_colors(self):
9
9
self .demo_mode = True
10
10
self .highlight (tbody )
11
11
self .post_message ("Part 1: Assert text in given row." )
12
- self .assert_text ("teal" , " tr:nth-child(2)" )
13
- self .assert_text ("aqua" , " tr:nth-child(4)" )
14
- self .assert_text ("mint" , " tr:nth-child(14)" )
15
- self .assert_text ("jade" , " tr:nth-child(36)" )
12
+ self .assert_text ("teal" , tbody + " tr:nth-child(2)" )
13
+ self .assert_text ("aqua" , tbody + " tr:nth-child(4)" )
14
+ self .assert_text ("mint" , tbody + " tr:nth-child(14)" )
15
+ self .assert_text ("jade" , tbody + " tr:nth-child(36)" )
16
16
soup = self .get_beautiful_soup (self .get_page_source ())
17
17
self .post_message ("Part 2: Find row with given text." )
18
18
self .locate_first_row_with_color ("rust" , tbody , soup )
You can’t perform that action at this time.
0 commit comments