class ActionDispatch::SystemTesting::Browser

def preload

avoid race conditions when using parallel tests.
driver_path is lazily initialized by default. Eagerly set it to
def preload
  case type
  when :chrome
    resolve_driver_path(::Selenium::WebDriver::Chrome)
  when :firefox
    resolve_driver_path(::Selenium::WebDriver::Firefox)
  end
end