We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce42f7 commit 93b43beCopy full SHA for 93b43be
rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb
@@ -23,7 +23,7 @@ module Selenium
23
module WebDriver
24
module Firefox
25
26
- compliant_on :driver => :firefox do
+ compliant_on :browser => :firefox do
27
describe Driver do
28
describe ".new" do
29
@@ -51,6 +51,8 @@ module Firefox
51
begin
52
profile = Selenium::WebDriver::Firefox::Profile.new
53
driver = Selenium::WebDriver.for :firefox, :profile => profile
54
+ stored_profile = driver.instance_variable_get('@bridge').instance_variable_get('@launcher').instance_variable_get('@profile')
55
+ expect(stored_profile).to be == profile
56
ensure
57
driver.quit if driver
58
end
0 commit comments