How do I check the version of the Selenium API installed?
I want to check the version of Selenium API I am using. I tried googling it, but couldn't find out.
libraries ide
|
show 2 more comments
I want to check the version of Selenium API I am using. I tried googling it, but couldn't find out.
libraries ide
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
found it finally
– vipin8169
Feb 26 '13 at 13:09
1
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15
|
show 2 more comments
I want to check the version of Selenium API I am using. I tried googling it, but couldn't find out.
libraries ide
I want to check the version of Selenium API I am using. I tried googling it, but couldn't find out.
libraries ide
libraries ide
edited Oct 4 '13 at 21:30
Braiam
52.1k20136222
52.1k20136222
asked Feb 26 '13 at 12:51
vipin8169vipin8169
2,246112856
2,246112856
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
found it finally
– vipin8169
Feb 26 '13 at 13:09
1
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15
|
show 2 more comments
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
found it finally
– vipin8169
Feb 26 '13 at 13:09
1
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
found it finally
– vipin8169
Feb 26 '13 at 13:09
found it finally
– vipin8169
Feb 26 '13 at 13:09
1
1
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15
|
show 2 more comments
6 Answers
6
active
oldest
votes
Here's how i checked for the version of selenium in Python.
>>> import selenium
>>> help (selenium)
Help on package selenium:
NAME
selenium
FILE
c:python27libsite-packagesselenium__init__.py
DESCRIPTION
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
PACKAGE CONTENTS
common (package)
selenium
webdriver (package)
DATA
__version__ = '2.48.0'
VERSION
2.48.0
add a comment |
You can also run locate selenium in the terminal, and you can see the version number in the file names.
add a comment |
You would have referenced the jar's in your IDE (Eclipse or whatever you are using maybe).
Check build path libraries. See the ScreenShot below:-

add a comment |
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium
>>> print selenium.__version__
3.3.0
3
Or as a single command:python -c 'import selenium; print selenium.__version__'
– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
add a comment |
Another way of determining the Selenium version is through the command line:
dpkg-query --list '*selenium*'
Output:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===================================================-==============================-==============================-===========================================================================================================
ii python-selenium 2.48.0+dfsg1-2 all Python bindings for Selenium
add a comment |
Just for completeness - If you have selenium installed with pip you can do:
pip freeze
and see which version you have installed, if any.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f261499%2fhow-do-i-check-the-version-of-the-selenium-api-installed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here's how i checked for the version of selenium in Python.
>>> import selenium
>>> help (selenium)
Help on package selenium:
NAME
selenium
FILE
c:python27libsite-packagesselenium__init__.py
DESCRIPTION
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
PACKAGE CONTENTS
common (package)
selenium
webdriver (package)
DATA
__version__ = '2.48.0'
VERSION
2.48.0
add a comment |
Here's how i checked for the version of selenium in Python.
>>> import selenium
>>> help (selenium)
Help on package selenium:
NAME
selenium
FILE
c:python27libsite-packagesselenium__init__.py
DESCRIPTION
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
PACKAGE CONTENTS
common (package)
selenium
webdriver (package)
DATA
__version__ = '2.48.0'
VERSION
2.48.0
add a comment |
Here's how i checked for the version of selenium in Python.
>>> import selenium
>>> help (selenium)
Help on package selenium:
NAME
selenium
FILE
c:python27libsite-packagesselenium__init__.py
DESCRIPTION
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
PACKAGE CONTENTS
common (package)
selenium
webdriver (package)
DATA
__version__ = '2.48.0'
VERSION
2.48.0
Here's how i checked for the version of selenium in Python.
>>> import selenium
>>> help (selenium)
Help on package selenium:
NAME
selenium
FILE
c:python27libsite-packagesselenium__init__.py
DESCRIPTION
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
PACKAGE CONTENTS
common (package)
selenium
webdriver (package)
DATA
__version__ = '2.48.0'
VERSION
2.48.0
answered Oct 8 '15 at 19:16
Joe Codeswell user601770Joe Codeswell user601770
32348
32348
add a comment |
add a comment |
You can also run locate selenium in the terminal, and you can see the version number in the file names.
add a comment |
You can also run locate selenium in the terminal, and you can see the version number in the file names.
add a comment |
You can also run locate selenium in the terminal, and you can see the version number in the file names.
You can also run locate selenium in the terminal, and you can see the version number in the file names.
edited Oct 4 '13 at 21:26
Braiam
52.1k20136222
52.1k20136222
answered Oct 4 '13 at 20:35
artothiefartothief
8425
8425
add a comment |
add a comment |
You would have referenced the jar's in your IDE (Eclipse or whatever you are using maybe).
Check build path libraries. See the ScreenShot below:-

add a comment |
You would have referenced the jar's in your IDE (Eclipse or whatever you are using maybe).
Check build path libraries. See the ScreenShot below:-

add a comment |
You would have referenced the jar's in your IDE (Eclipse or whatever you are using maybe).
Check build path libraries. See the ScreenShot below:-

You would have referenced the jar's in your IDE (Eclipse or whatever you are using maybe).
Check build path libraries. See the ScreenShot below:-

edited Feb 26 '13 at 13:49
answered Feb 26 '13 at 13:10
vipin8169vipin8169
2,246112856
2,246112856
add a comment |
add a comment |
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium
>>> print selenium.__version__
3.3.0
3
Or as a single command:python -c 'import selenium; print selenium.__version__'
– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
add a comment |
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium
>>> print selenium.__version__
3.3.0
3
Or as a single command:python -c 'import selenium; print selenium.__version__'
– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
add a comment |
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium
>>> print selenium.__version__
3.3.0
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium
>>> print selenium.__version__
3.3.0
answered Mar 14 '17 at 15:56
Jeff WRJeff WR
412
412
3
Or as a single command:python -c 'import selenium; print selenium.__version__'
– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
add a comment |
3
Or as a single command:python -c 'import selenium; print selenium.__version__'
– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
3
3
Or as a single command:
python -c 'import selenium; print selenium.__version__'– David Foerster
Mar 14 '17 at 17:07
Or as a single command:
python -c 'import selenium; print selenium.__version__'– David Foerster
Mar 14 '17 at 17:07
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
A bit more text to accompany your answer is needed.
– Phil UK
Mar 15 '17 at 1:51
add a comment |
Another way of determining the Selenium version is through the command line:
dpkg-query --list '*selenium*'
Output:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===================================================-==============================-==============================-===========================================================================================================
ii python-selenium 2.48.0+dfsg1-2 all Python bindings for Selenium
add a comment |
Another way of determining the Selenium version is through the command line:
dpkg-query --list '*selenium*'
Output:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===================================================-==============================-==============================-===========================================================================================================
ii python-selenium 2.48.0+dfsg1-2 all Python bindings for Selenium
add a comment |
Another way of determining the Selenium version is through the command line:
dpkg-query --list '*selenium*'
Output:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===================================================-==============================-==============================-===========================================================================================================
ii python-selenium 2.48.0+dfsg1-2 all Python bindings for Selenium
Another way of determining the Selenium version is through the command line:
dpkg-query --list '*selenium*'
Output:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===================================================-==============================-==============================-===========================================================================================================
ii python-selenium 2.48.0+dfsg1-2 all Python bindings for Selenium
answered Nov 7 '16 at 19:03
eaglet3deaglet3d
112
112
add a comment |
add a comment |
Just for completeness - If you have selenium installed with pip you can do:
pip freeze
and see which version you have installed, if any.
add a comment |
Just for completeness - If you have selenium installed with pip you can do:
pip freeze
and see which version you have installed, if any.
add a comment |
Just for completeness - If you have selenium installed with pip you can do:
pip freeze
and see which version you have installed, if any.
Just for completeness - If you have selenium installed with pip you can do:
pip freeze
and see which version you have installed, if any.
answered Jul 5 '18 at 21:03
deManglerdeMangler
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f261499%2fhow-do-i-check-the-version-of-the-selenium-api-installed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
could you tell us when you have installed that ?
– rɑːdʒɑ
Feb 26 '13 at 12:58
2-3 months ago, may be. not sure
– vipin8169
Feb 26 '13 at 13:00
may be this can help you , honestly I too havent found but this what I have got docs.seleniumhq.org/download .
– rɑːdʒɑ
Feb 26 '13 at 13:02
found it finally
– vipin8169
Feb 26 '13 at 13:09
1
I am glad that you have got and thanks for mentioning the right way to figure it out.I am sure that this answer will Helpful to future users who going to need this.
– rɑːdʒɑ
Feb 26 '13 at 13:15