查看selenium版本

此方法在pycharm里执行

1. 打开命令行,输入python


F:\autotest\pycharm\test1>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 19:29:22) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 


2. 执行 import selenium 和 help(selenium)  ,将信息返到最后即可看到 VERSION  信息


>>> import selenium
>>> help(selenium)

Help on package selenium:

NAME
    selenium

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 i

你可能感兴趣的:(python)