require 'lapis_lazuli'
include LapisLazuli
# Start a FF session
browser :firefox
browser.goto "https://www.google.nl"
browser.quit
# Now try to start a Chrome session
browser :chrome
You will notice that not Chrome but FF will be started.
I need to quit irb and start it again to be able to start this new browser session.
Expected
I expected to be able to start the Chrome session when I've closed the Firefox session. Just like I can do with Watir
Actual irb
You will notice that not Chrome but FF will be started. I need to quit irb and start it again to be able to start this new browser session.
Expected I expected to be able to start the Chrome session when I've closed the Firefox session. Just like I can do with Watir