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

Support different browser versions if defined #428

Open
NikolayMakhonin opened this issue Feb 20, 2019 · 2 comments
Open

Support different browser versions if defined #428

NikolayMakhonin opened this issue Feb 20, 2019 · 2 comments
Labels
Good First Pick Issues that have been triaged and ready for everyone to work on Hacktoberfest Issues that were selected to work on during Hacktoberfest pr welcome

Comments

@NikolayMakhonin
Copy link

WebDriver specification suggests to use the browserVersion parameter:
https://w3c.github.io/webdriver/#capabilities

{
	"browserName": "firefox",
	"browserVersion": "1234"
}

But I not see how selenium-standalone can use this option.
Is it possible to use several browsers versions in selenium-standalone, with configuration like this?:

???
selenium.install({
  ...
  drivers: {
    chromium33: { //Android 4.4 WebView
      driverPath: 'C:/drivers/chrome/2.10',
      browserPath: 'C:/browsers/chromium/33.0.1750.170'
    },
    chromium33: { //Android 5.0 WebView
      driverPath: 'C:/drivers/chrome/2.12',
      browserPath: 'C:/browsers/chromium/37.0.2062.99'
    },
    chromium44: { //Android 6.0 WebView
      driverPath: 'C:/drivers/chrome/2.20',
      browserPath: 'C:/browsers/chromium/44.0.2403.119'
    },
    ...
  },
  ...
}, cb);
@mgrybyk
Copy link
Member

mgrybyk commented Oct 9, 2020

I think it's not supported, feel free to raise a PR for that!

@mgrybyk
Copy link
Member

mgrybyk commented Nov 25, 2020

#491 should be done as a part of this issue

@christian-bromann christian-bromann changed the title How can I use several browser versions in one server? Support different browser versions if defined Oct 18, 2021
@christian-bromann christian-bromann added Hacktoberfest Issues that were selected to work on during Hacktoberfest Good First Pick Issues that have been triaged and ready for everyone to work on labels Oct 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Good First Pick Issues that have been triaged and ready for everyone to work on Hacktoberfest Issues that were selected to work on during Hacktoberfest pr welcome
Projects
None yet
Development

No branches or pull requests

3 participants