Skip to content

Commit

Permalink
Merge pull request #184 from stof/skip_failing_test
Browse files Browse the repository at this point in the history
Skipped the test about HTML5 types until WebDriver supports it
  • Loading branch information
stof committed Sep 29, 2014
2 parents b7bba8a + 93e9747 commit 26beda2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Selenium2Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ public function skipMessage($testCase, $test)
return $message;
}

if (
'phantomjs' !== getenv('WEBDRIVER')
&& 'Behat\Mink\Tests\Driver\Form\Html5Test' === $testCase
&& 'testHtml5Types' === $test
) {
return 'WebDriver does not support setting value in color inputs. See https://code.google.com/p/selenium/issues/detail?id=7650';
}

if (
'Behat\Mink\Tests\Driver\Js\WindowTest' === $testCase
&& 'testWindowMaximize' === $test
Expand Down

0 comments on commit 26beda2

Please sign in to comment.