From 9d305be6b6a2170c48c757e5efa469754706b2bd Mon Sep 17 00:00:00 2001 From: aguspe Date: Sat, 22 Feb 2025 13:46:49 +0100 Subject: [PATCH] Fix minor bug on selenium builds --- lib/generators/templates/helpers/partials/driver_and_options.tt | 2 +- lib/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/generators/templates/helpers/partials/driver_and_options.tt b/lib/generators/templates/helpers/partials/driver_and_options.tt index 56fe605..be723e7 100644 --- a/lib/generators/templates/helpers/partials/driver_and_options.tt +++ b/lib/generators/templates/helpers/partials/driver_and_options.tt @@ -9,7 +9,7 @@ def create_driver(*opts) @config = YAML.load_file('config/config.yml') browser = @config['browser'] - Selenium::WebDriver.for(browser, options: create_webdriver_options(*opts)) + Selenium::WebDriver.for(browser.to_sym, options: create_webdriver_options(*opts)) end def browser_arguments(*opts) diff --git a/lib/version b/lib/version index 524cb55..45a1b3f 100644 --- a/lib/version +++ b/lib/version @@ -1 +1 @@ -1.1.1 +1.1.2