File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ module DriverExtensions
27
27
storage . clear
28
28
end
29
29
30
- it 'can get and set items' do
30
+ # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2177
31
+ it 'can get and set items' , except : { browser : :chrome } do
31
32
expect ( storage ) . to be_empty
32
33
storage [ 'foo' ] = 'bar'
33
34
expect ( storage [ 'foo' ] ) . to eq ( 'bar' )
@@ -47,7 +48,8 @@ module DriverExtensions
47
48
expect ( storage . keys ) . to include ( 'foo1' , 'foo2' , 'foo3' )
48
49
end
49
50
50
- it 'can clear all items' do
51
+ # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2177
52
+ it 'can clear all items' , except : { browser : :chrome } do
51
53
storage [ 'foo1' ] = 'bar1'
52
54
storage [ 'foo2' ] = 'bar2'
53
55
storage [ 'foo3' ] = 'bar3'
You can’t perform that action at this time.
0 commit comments