File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 69
69
expect ( driver . find_element ( :id , "withText" ) . attribute ( "rows" ) ) . to eq ( "5" )
70
70
end
71
71
72
- not_compliant_on :edge do
72
+ not_compliant_on :browser => : edge do
73
73
it "should return nil for non-existent attributes" do
74
74
driver . navigate . to url_for ( "formPage.html" )
75
75
expect ( driver . find_element ( :id , "withText" ) . attribute ( "nonexistent" ) ) . to be_nil
76
76
end
77
77
end
78
78
79
79
# Per W3C spec this should return Invalid Argument not Unknown Error, but there is no comparable error code
80
- compliant_on :edge do
80
+ compliant_on :browser => : edge do
81
81
it "should return nil for non-existent attributes" do
82
82
driver . navigate . to url_for ( "formPage.html" )
83
83
element = driver . find_element ( :id , "withText" )
You can’t perform that action at this time.
0 commit comments