ฉันจะตรวจสอบเวอร์ชั่นของซีลีเนียม API ที่ติดตั้งได้อย่างไร


12

ฉันต้องการตรวจสอบเวอร์ชั่นของซีลีเนียม API ที่ฉันใช้อยู่ ฉันลอง googling แล้ว แต่หาไม่เจอ


คุณสามารถบอกเราได้เมื่อคุณติดตั้งนั้น
rɑːdʒɑ

2-3 เดือนที่ผ่านมาอาจจะเป็น ไม่แน่ใจ
vipin8169

นี้อาจจะช่วยให้คุณสามารถตรงไปตรงมาผมพบว่า havent เกินไป แต่ตอนนี้สิ่งที่ผมได้มี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__'
David Foerster

ต้องการข้อความเพิ่มอีกเล็กน้อยเพื่อตอบคำถามของคุณ
Phil UK

print( selenium.__version__ )สำหรับ Python3 ... ใช่มันเป็นสิ่งที่ดีมาก ๆ มาก ๆ มาก ๆ และชัดเจนมาก แต่อาจช่วยใครบางคน!
ไมค์หนูที่

4

คุณอาจอ้างถึง jar ใน IDE ของคุณ (Eclipse หรืออะไรก็ตามที่คุณใช้อยู่) ตรวจสอบไลบรารีพา ธ บิลด์ ดูภาพหน้าจอด้านล่าง: -

ป้อนคำอธิบายรูปภาพที่นี่


1

อีกวิธีในการพิจารณาเวอร์ชั่นซีลีเนียมคือผ่านบรรทัดคำสั่ง:

dpkg-query --list '*selenium*'

เอาท์พุท:

ที่ต้องการอยาก = ไม่ทราบ / ติดตั้ง / ลบ / ล้าง / จอง
| สถานะ = ไม่ / สถาบัน / Conf ไฟล์ / คลายการแพค / ครึ่ง conf / ครึ่งสถาบัน / หนุน-รอ / หนุน-แขวน
| / Err? = (none) / จำเป็นต้องมี Reinst (Status, Err: uppercase = bad)
|| / ชื่อเวอร์ชั่นสถาปัตยกรรมคำอธิบาย
+++ - ============================================== ===== - ============================== - ============= ================= - ================================ ================================================== =========================
ii python-selenium 2.48.0 + dfsg1-2 การผูก Python ทั้งหมดสำหรับ Selenium

0

เพื่อความสมบูรณ์ - หากคุณติดตั้งซีลีเนียมด้วย pip คุณสามารถทำได้:

pip freeze

และดูว่าคุณได้ติดตั้งเวอร์ชันใดถ้ามี

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.