File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
test/selenium/webdriver/common
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -520,10 +520,13 @@ py_test_suite(
520
520
py_test_suite (
521
521
name = "test-firefox" ,
522
522
size = "large" ,
523
- srcs = glob ([
524
- "test/selenium/webdriver/marionette/**/*.py" ,
525
- "test/selenium/webdriver/firefox/**/*.py" ,
526
- ]),
523
+ srcs = glob (
524
+ [
525
+ "test/selenium/webdriver/marionette/**/*.py" ,
526
+ "test/selenium/webdriver/firefox/**/*.py" ,
527
+ ],
528
+ exclude = ["test/selenium/webdriver/common/devtools_tests.py" ],
529
+ ),
527
530
args = [
528
531
"--instafail" ,
529
532
] + BROWSERS ["firefox" ]["args" ],
Original file line number Diff line number Diff line change 21
21
22
22
@pytest .mark .xfail_safari
23
23
@pytest .mark .xfail_firefox
24
+ @pytest .mark .xfail_remote
24
25
def test_check_console_messages (driver , pages ):
25
26
with pytest .warns (None ) as record :
26
27
devtools , connection = driver .start_devtools ()
Original file line number Diff line number Diff line change @@ -112,9 +112,6 @@ module WebDriver
112
112
expect ( logs ) . to include (
113
113
an_object_having_attributes ( type : :log , args : [ hash_including ( 'type' => 'object' ) ] )
114
114
)
115
- expect ( logs ) . to include (
116
- an_object_having_attributes ( type : :log , args : [ hash_including ( 'location' ) ] )
117
- )
118
115
end
119
116
120
117
it 'notifies about exceptions' do
You can’t perform that action at this time.
0 commit comments