Skip to content

Commit

Permalink
Release of version 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffnyman committed Oct 14, 2015
1 parent f6d4648 commit 7cbdbd1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can also install Symbiont just as you would any other gem:

To learn how to use the framework, you can check out my [blog posts on Symbiont](http://testerstories.com/category/symbiont/) and for the most up to date information, you can check out the [Symbiont Wiki](https://github.com/jnyman/symbiont/wiki).

You can check out the [Symbiont test script](https://github.com/jnyman/symbiont/blob/master/test/symbiont-script.rb) for an idea of how the library can be interacted with. Do note that the test script requires a local copy of [Dialogic](https://github.com/jnyman/dialogic) to be running. To execute the test script:
You can check out the [Symbiont test script](https://github.com/jnyman/symbiont/blob/master/test/symbiont-script.rb) for an idea of how the library can be interacted with. Do note that the test script requires a local copy of [Symbiote](https://github.com/jnyman/symbiote) to be running. To execute the test script:

$ rake test:script

Expand Down
4 changes: 2 additions & 2 deletions lib/symbiont.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def initialize(browser = nil)
initialize_activity if respond_to?(:initialize_activity)
end

def self.set_browser(app = :firefox)
@browser = Watir::Browser.new(app)
def self.set_browser(app = :firefox, *args)
@browser = Watir::Browser.new(app, *args)
Symbiont.browser = @browser
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/symbiont/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Symbiont
VERSION = '0.14.0'
VERSION = '1.0.0'
end

0 comments on commit 7cbdbd1

Please sign in to comment.