Skip to content

Commit

Permalink
Set Marionette flag appropriately in Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Jun 8, 2016
1 parent 6f7a4ab commit d8c3617
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion py/build.desc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ py_test(

py_test(
name = "marionette_test",
deps = [ ":test_ff" ],
deps = [ ":test_marionette" ],
browsers = [ "marionette" ])

py_test(
Expand Down
2 changes: 2 additions & 0 deletions rake-tasks/browsers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
:dir => "firefox", # Directory to put tests in/read tests from
:file_string => "ff", # Browser-string to use in test filenames
:class => "Firefox", # As per py/selenium/webdriver/__init__.py
:constructor_args => "capabilities={'marionette': False}",
:resources => [
{ "//javascript/firefox-driver:webdriver" => "selenium/webdriver/firefox/" },
{ "//cpp:noblur" => "selenium/webdriver/firefox/x86/x_ignore_nofocus.so" },
Expand All @@ -27,6 +28,7 @@
:dir => "firefox", # Directory to put tests in/read tests from
:file_string => "marionette", # Browser-string to use in test filenames
:class => "Firefox", # As per py/selenium/webdriver/__init__.py
:constructor_args => "capabilities={'marionette': True}",
},
:java => {
:class => "org.openqa.selenium.firefox.SynthesizedFirefoxDriver",
Expand Down

0 comments on commit d8c3617

Please sign in to comment.