Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow passing selenium options #537

Merged
merged 1 commit into from
Dec 9, 2018

Conversation

odedniv
Copy link
Contributor

@odedniv odedniv commented Feb 9, 2018

Chrome now allows headless capability, but teaspoon stood between my app and the ability to use it. Here's the fix, and this is how I use it in my spec/teaspoon_env.rb (I recommend adding it to the wiki):

Teaspoon.configure do |config|
  config.driver_options = {
    client_driver: :chrome,
    selenium_options: {
      options: Selenium::WebDriver::Chrome::Options.new(args: ['headless', 'disable-gpu'])
    }
  }
end

To my understanding PhantomJS ceased development because of overwhelming security issues, and the fact it can be replaced by Chrome's headless capability. I think it's time to replace it with Selenium as the default driver.

@@ -44,7 +44,8 @@ def driver_options
client_driver: :firefox,
timeout: Teaspoon.configuration.driver_timeout.to_i,
interval: 0.01,
message: "Timed out"
message: "Timed out",
selenium_options: {},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid comma after the last parameter of a method call.

@@ -44,7 +44,8 @@ def driver_options
client_driver: :firefox,
timeout: Teaspoon.configuration.driver_timeout.to_i,
interval: 0.01,
message: "Timed out"
message: "Timed out",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer single-quoted strings when you don't need string interpolation or special symbols.

@@ -23,7 +23,7 @@ def initialize(options = nil)
end

def run_specs(runner, url)
driver = ::Selenium::WebDriver.for(driver_options[:client_driver])
driver = ::Selenium::WebDriver.for(driver_options[:client_driver], **driver_options[:selenium_options].to_options)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line is too long. [122/120]

@jejacks0n
Copy link
Owner

Agree with your points about phantom being deprecated. It's been on my list of things to get to -- I would accept a PR that effectively removes phantomjs and makes the chrome driver primary, otherwise I'd rather wait to pull this in to avoid two passes at trying to resolve this.

client_driver: :firefox,
timeout: 180,
interval: 0.01,
message: "Timed out",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer single-quoted strings when you don't need string interpolation or special symbols.

@odedniv
Copy link
Contributor Author

odedniv commented Feb 9, 2018

Is the way I passed the options reasonable? If so I don't see why this PR cannot be merged regardless of changing the default.

I'm assuming you refer to the docs and the generator? Or do you want to remove support? That would be a hurtful breaking change (that may delay this little change unnecessarily)

If you'd lay out exactly what you want done (e.g. do you want to change the default to what I wrote above? do you want to add documentation in the wiki and the generator? etc) I'd be happy to push a PR (though I don't know where the wiki is or the generator).

@odedniv odedniv force-pushed the selenium-options branch 2 times, most recently from 7b9b862 to f64781e Compare February 9, 2018 22:21
@bmulholland
Copy link

@jejacks0n There's a few other PRs to do the same thing (#519, #530), perhaps there's enough demand to merge (one of) this change on its own?

@josh08h
Copy link

josh08h commented May 30, 2018

Is there any movement on this? I am looking at migrating off phantomjs onto headless chrome but obviously need this change in.

@odedniv
Copy link
Contributor Author

odedniv commented May 30, 2018

@josh08h until the maintainer gets a chance to work on it, you can use the branch directly (I have ever since I opened this PR). In your Gemfile:

  gem 'teaspoon', github: 'odedniv/teaspoon', branch: 'selenium-options'

You can fork and use your own branch if you're intimidated by doing that.

The only problem I had with using Chrome is that console.log no longer appears in the terminal, I have to stop using headless mode and open the inspect element window to see them.

@josh08h
Copy link

josh08h commented May 30, 2018

Thanks for the heads up re console.log.

Your patch looks good to me - I'll most likely fork off your branch.

@jejacks0n
Copy link
Owner

If y’all can figure out why console log doesn’t work I’ll merge this.

@odedniv
Copy link
Contributor Author

odedniv commented May 30, 2018

@jejacks0n I think it's still better than using a deprecated driver :) Also this PR doesn't break anything, it just allows additional driver options (whatever driver you happen to use)

@pjmelling
Copy link

@odedniv and @jejacks0n Thanks for the work on this! I would love to see this merged in. We are using headless FF in our CI environment for our ruby based feature specs. And I want to ditch PhantomJS and use headless FF for teaspoon, too. Is there something holding this back that I could help with? Thanks!

@jejacks0n
Copy link
Owner

@pjmelling would you be willing to sort out CI? IT's pretty hard to merge when CI is broken and I simply haven't had time to work on open source much in the past year or two.

@pablobm
Copy link
Contributor

pablobm commented Dec 7, 2018

#552 fixes the build. Perhaps we can proceed to merge this? :-) /cc @odedniv @jejacks0n

@jejacks0n
Copy link
Owner

I’m mobile, anybody want to rebase and check things?

@odedniv
Copy link
Contributor Author

odedniv commented Dec 9, 2018

Done, seem to work

@odedniv
Copy link
Contributor Author

odedniv commented Dec 9, 2018

Oops, if anyone was using my PR branch (including me), your Gemfile.lock is now broken (fatal: Could not parse object 'f64781ee6097e18fb838bc4fd5725172e3a24d27').

Run bundle update --source teaspoon to fix

@jejacks0n jejacks0n merged commit 0fa9b8f into jejacks0n:master Dec 9, 2018
@pablobm pablobm mentioned this pull request Dec 21, 2018
ewlarson added a commit to geoblacklight/geoblacklight that referenced this pull request Jan 29, 2019
Teaspoon master has support for driver_options, but no new gem release has been cut for 2+ years (?). The merged PR including this support is here:
jejacks0n/teaspoon#537

Monkey patching teaspoon locally to add chrome support until we change test frameworks.
ewlarson added a commit to geoblacklight/geoblacklight that referenced this pull request Jan 29, 2019
Teaspoon: use chrome driver, via monkey patch

Teaspoon master has support for driver_options, but no new gem release has been cut for 2+ years (?). The merged PR including this support is here:
jejacks0n/teaspoon#537

Monkey patching teaspoon locally to add chrome support until we change test frameworks.

Rubocop: clean up StringLiterals and SafeNavigation

Teaspoon: set driver explicitly to :chrome

Teaspoon: One more try to spin chrome here.
ewlarson added a commit to geoblacklight/geoblacklight that referenced this pull request Jan 29, 2019
Teaspoon: use chrome driver, via monkey patch

Teaspoon master has support for driver_options, but no new gem release has been cut for 2+ years (?). The merged PR including this support is here:
jejacks0n/teaspoon#537

Monkey patching teaspoon locally to add chrome support until we change test frameworks.

Rubocop: clean up StringLiterals and SafeNavigation

Teaspoon: set driver explicitly to :chrome

Teaspoon: One more try to spin chrome here.
eliotjordan pushed a commit to geoblacklight/geoblacklight that referenced this pull request Jan 29, 2019
Teaspoon: use chrome driver, via monkey patch

Teaspoon master has support for driver_options, but no new gem release has been cut for 2+ years (?). The merged PR including this support is here:
jejacks0n/teaspoon#537

Monkey patching teaspoon locally to add chrome support until we change test frameworks.

Rubocop: clean up StringLiterals and SafeNavigation

Teaspoon: set driver explicitly to :chrome

Teaspoon: One more try to spin chrome here.
jejacks0n pushed a commit that referenced this pull request May 9, 2019
aldesantis added a commit to aldesantis/solidus that referenced this pull request Sep 2, 2019
The changes to the CI configuration are needed because teaspoon_env
is now[1] searched starting from Rails.root when Rails is available,
which breaks our test suite because Rails.root is spec/dummy, while
teaspoon_env.rb is in spec.

The monkey-patch was removed because Teaspoon now supports passing
options to Selenium[2].

[1]: jejacks0n/teaspoon@5b912da
[2]: jejacks0n/teaspoon#537
kennyadsl pushed a commit to nebulab/solidus that referenced this pull request Jul 9, 2020
The changes to the CI configuration are needed because teaspoon_env
is now[1] searched starting from Rails.root when Rails is available,
which breaks our test suite because Rails.root is spec/dummy, while
teaspoon_env.rb is in spec.

The monkey-patch was removed because Teaspoon now supports passing
options to Selenium[2].

[1]: jejacks0n/teaspoon@5b912da
[2]: jejacks0n/teaspoon#537
kennyadsl pushed a commit to nebulab/solidus that referenced this pull request Jul 9, 2020
The changes to the CI configuration are needed because teaspoon_env
is now[1] searched starting from Rails.root when Rails is available,
which breaks our test suite because Rails.root is spec/dummy, while
teaspoon_env.rb is in spec.

The monkey-patch was removed because Teaspoon now supports passing
options to Selenium[2].

[1]: jejacks0n/teaspoon@5b912da
[2]: jejacks0n/teaspoon#537
kennyadsl pushed a commit to nebulab/solidus that referenced this pull request Jul 9, 2020
The changes to the CI configuration are needed because teaspoon_env
is now[1] searched starting from Rails.root when Rails is available,
which breaks our test suite because Rails.root is spec/dummy, while
teaspoon_env.rb is in spec.

The monkey-patch was removed because Teaspoon now supports passing
options to Selenium[2].

[1]: jejacks0n/teaspoon@5b912da
[2]: jejacks0n/teaspoon#537
This was referenced Mar 11, 2021
waiting-for-dev pushed a commit to Noah-Silvera/solidus that referenced this pull request Jun 7, 2022
The changes to the CI configuration are needed because teaspoon_env
is now[1] searched starting from Rails.root when Rails is available,
which breaks our test suite because Rails.root is spec/dummy, while
teaspoon_env.rb is in spec.

The monkey-patch was removed because Teaspoon now supports passing
options to Selenium[2].

[1]: jejacks0n/teaspoon@5b912da
[2]: jejacks0n/teaspoon#537
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants