File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 37
37
end
38
38
39
39
begin
40
- Selenium ::WebDriver ::Wait . new ( timeout : 30 , interval : 1 ) . until {
41
- browser . find_element ( :css , '. rspec-report' )
40
+ Selenium ::WebDriver ::Wait . new ( timeout : 60 , interval : 10 ) . until {
41
+ browser . find_element ( :class , 'rspec-report' )
42
42
}
43
43
rescue Selenium ::WebDriver ::Error ::TimeOutError
44
44
puts "\r The specs failed loading."
55
55
Selenium ::WebDriver ::Wait . new ( timeout : 1200 , interval : 30 ) . until {
56
56
print '.'
57
57
58
- not browser . find_element ( :css , 'p# totals' ) . text . strip . empty?
58
+ not browser . find_element ( :id , 'totals' ) . text . strip . empty?
59
59
}
60
60
61
- totals = browser . find_element ( :css , 'p# totals' ) . text
62
- duration = browser . find_element ( :css , 'p# duration' ) . find_element ( :css , 'strong' ) . text
61
+ totals = browser . find_element ( :id , 'totals' ) . text
62
+ duration = browser . find_element ( :id , 'duration' ) . find_element ( :tag_name , 'strong' ) . text
63
63
64
64
print "\r #{ totals } in #{ duration } "
65
65
You can’t perform that action at this time.
0 commit comments