インストールされているSelenium APIのバージョンを確認するにはどうすればよいですか?


12

使用しているSelenium APIのバージョンを確認したい。私はそれをググリングしようとしましたが、見つけることができませんでした。


いつインストールしたのか教えてください。
rɑːdʒɑ

2-3ヶ月前かもしれません。わからない
vipin8169

これはあなたを助けることができるかもしれません、正直なところ私はあまりにも見つけていませんが、これは私がdocs.seleniumhq.org/downloadを持っていることです
rɑːdʒɑ

最終的にそれを見つけた
-vipin8169

1
私はあなたが持っていることを嬉しく思いますし、それを理解する正しい方法について言及してくれて感謝しています。この答えは、これを必要とする将来のユーザーに役立つと確信しています。
rɑːdʒɑ

回答:


12

Pythonでセレンのバージョンを確認する方法は次のとおりです。

>>> import selenium    
>>> help (selenium)
Help on package selenium:

NAME
    selenium

FILE
    c:\python27\lib\site-packages\selenium\__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

6

locate seleniumターミナルで実行することもでき、ファイル名にバージョン番号が表示されます。


5
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
または単一のコマンドとして:python -c 'import selenium; print selenium.__version__'
デビッドフォースター

回答に添付するテキストがもう少し必要です。
Phil UK

print( selenium.__version__ )Python3の場合...はい、非常に非常に非常に非常に非常に非常に非常に非常に非常に非常に非常に非常に非常に非常に明白です。しかし、誰かを助けるかもしれません!
マイクげっ歯類

4

IDEでjarを参照しているはずです(Eclipseまたは使用しているものは何でも)。ビルドパスライブラリを確認します。以下のスクリーンショットを参照してください:-

ここに画像の説明を入力してください


1

Seleniumのバージョンを確認する別の方法は、コマンドラインを使用することです。

dpkg-query --list '*selenium*'

出力:

Desired =不明/インストール/削除/パージ/保留
| Status = Not / Inst / Conf-files / Unpacked / halF-conf / Half-inst / trig-aWait / Trig-pend
| / Err?=(none)/ Reinst-required(Status、Err:uppercase = bad)
|| /名前バージョンアーキテクチャ説明
+++-============================================= =====-==============================-============= =================-================================ ================================================= =========================
ii python-selenium 2.48.0 + dfsg1-2 SeleniumのすべてのPythonバインディング

0

完全を期すために-pipでセレンをインストールしている場合は、次のことができます。

pip freeze

インストールされているバージョンがある場合はそれを確認します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.