설치된 Selenium API의 버전을 어떻게 확인합니까?


12

사용중인 Selenium API 버전을 확인하고 싶습니다. 인터넷 검색을 시도했지만 찾을 수 없었습니다.


설치 한 시점을 알려주시겠습니까?
rɑːdʒɑ

2-3 개월 전일 수도 있습니다. 확실하지 않음
vipin8169

솔직히 나도 발견하지 못했지만 이것이 docs.seleniumhq.org/download에서 얻은 입니다.
rɑːdʒɑ

그것을 마침내 발견
vipin8169

1
올바른 방법을 찾아 주셔서 감사합니다.이 답변이 앞으로 필요할 사용자에게 도움이 될 것입니다.
rɑːdʒɑ

답변:


12

파이썬에서 셀레늄 버전을 확인한 방법은 다음과 같습니다.

>>> 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__'
David Foerster

답과 함께 조금 더 많은 텍스트가 필요합니다.
Phil UK

print( selenium.__version__ )Python3의 경우 ... 그렇습니다. 매우 매우 매우 매우 매우 매우 매우 매우 분명합니다. 그러나 누군가를 도울 수 있습니다!
마이크 설치류

4

IDE에서 jar를 참조했을 것입니다 (Eclipse 또는 사용중인 모든 것). 빌드 경로 라이브러리를 확인하십시오. 아래의 스크린 샷을 참조하십시오 :-

여기에 이미지 설명을 입력하십시오


1

Selenium 버전을 확인하는 다른 방법은 명령 줄을 사용하는 것입니다.

dpkg-query --list '*selenium*'

산출:

원하는 = 알 수 없음 / 설치 / 제거 / 지우기 / 보류
| 상태 = Not / Inst / Conf-files / Unpacked / halF-conf / Half-inst / trig-aWait / Trig-pend
| / 오류? = (없음) / 이력서 필요 (상태, 오류 : 대문자 = 나쁜)
|| / 이름 버전 아키텍처 설명
+++-================================================= =====-=============================================== ===================================================== ===================================================== ==========================
ii Python-Selenium 2.48.0 + dfsg1-2 Selenium에 대한 모든 Python 바인딩

0

완벽을 위해-pip와 함께 셀레늄을 설치 한 경우 다음을 수행 할 수 있습니다.

pip freeze

설치된 버전을 확인하십시오 (있는 경우).

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.