mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
window#maximize only pending for firefox test under travis
This commit is contained in:
parent
864fb620b5
commit
c789ffb089
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ Capybara::SpecHelper.spec Capybara::Window, requires: [:windows] do
|
|||
|
||||
describe '#maximize' do
|
||||
it 'should be able to maximize window', requires: [:windows, :js] do
|
||||
pending "This test fails when run on Travis for an unknown reason - setting to pending for now" if ENV['TRAVIS']
|
||||
pending "This test fails when run with Firefox on Travis for an unknown reason - setting to pending for now" if ENV['TRAVIS'] && @session.respond_to?(:mode) && (@session.mode == :selenium_focus)
|
||||
screen_width, screen_height = @session.evaluate_script("[window.screen.availWidth, window.screen.availHeight];")
|
||||
window = @session.current_window
|
||||
window.resize_to(screen_width-100, screen_height-100)
|
||||
|
|
Loading…
Reference in a new issue