资源简介

selenium3离线安装包适合各种网络差的同学,可以用python setup命令和pip等命令离线安装

资源截图

代码片段和文件信息

#!/usr/bin/env python

# 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.

from distutils.command.install import INSTALL_SCHEMES
from os.path import dirname join abspath
from setuptools import setup
from setuptools.command.install import install


for scheme in INSTALL_SCHEMES.values():
    scheme[‘data‘] = scheme[‘purelib‘]

setup_args = {
    ‘cmdclass‘: {‘install‘: install}
    ‘name‘: ‘selenium‘
    ‘version‘: “3.141.0“
    ‘license‘: ‘Apache 2.0‘
    ‘description‘: ‘Python bindings for Selenium‘
    ‘long_description‘: open(join(abspath(dirname(__file__)) “README.rst“)).read()
    ‘url‘: ‘https://github.com/SeleniumHQ/selenium/‘
    ‘classifiers‘: [‘Development Status :: 5 - Production/Stable‘
                    ‘Intended Audience :: Developers‘
                    ‘License :: OSI Approved :: Apache Software License‘
                    ‘Operating System :: POSIX‘
                    ‘Operating System :: Microsoft :: Windows‘
                    ‘Operating System :: MacOS :: MacOS X‘
                    ‘Topic :: Software Development :: Testing‘
                    ‘Topic :: Software Development :: Libraries‘
                    ‘Programming Language :: Python‘
                    ‘Programming Language :: Python :: 2.7‘
                    ‘Programming Language :: Python :: 3.4‘
                    ‘Programming Language :: Python :: 3.5‘
                    ‘Programming Language :: Python :: 3.6‘]
    ‘package_dir‘: {
        ‘selenium‘: ‘selenium‘
        ‘selenium.common‘: ‘selenium/common‘
        ‘selenium.webdriver‘: ‘selenium/webdriver‘
    }
    ‘packages‘: [‘selenium‘
                 ‘selenium.common‘
                 ‘selenium.webdriver‘
                 ‘selenium.webdriver.android‘
                 ‘selenium.webdriver.chrome‘
                 ‘selenium.webdriver.common‘
                 ‘selenium.webdriver.common.html5‘
                 ‘selenium.webdriver.support‘
                 ‘selenium.webdriver.firefox‘
                 ‘selenium.webdriver.ie‘
                 ‘selenium.webdriver.edge‘
                 ‘selenium.webdriver.opera‘
                 ‘selenium.webdriver.phantomjs‘
                 ‘selenium.webdriver.remote‘
                 ‘selenium.webdriver.supp

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-02-24 11:43  selenium\
     文件      904577  2020-02-23 11:17  selenium\selenium-3.141.0-py2.py3-none-any.whl
     文件      125642  2020-02-23 11:17  selenium\urllib3-1.25.8-py2.py3-none-any.whl
     目录           0  2020-02-24 11:41  selenium-3.141.0\
     文件       26135  2018-11-01 16:43  selenium-3.141.0\CHANGES
     文件       11365  2018-11-01 16:59  selenium-3.141.0\LICENSE
     文件         915  2018-08-16 23:42  selenium-3.141.0\MANIFEST.in
     文件        7701  2018-11-01 17:00  selenium-3.141.0\PKG-INFO
     文件        5654  2018-11-01 16:34  selenium-3.141.0\README.rst
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\
     目录           0  2020-03-08 15:54  selenium-3.141.0\build\bdist.win-amd64\
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\
     文件         813  2018-11-01 16:34  selenium-3.141.0\build\lib\selenium\__init__.py
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\common\
     文件         821  2016-06-20 17:22  selenium-3.141.0\build\lib\selenium\common\__init__.py
     文件        9274  2018-03-05 17:36  selenium-3.141.0\build\lib\selenium\common\exceptions.py
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\webdriver\
     文件        1981  2018-10-09 22:25  selenium-3.141.0\build\lib\selenium\webdriver\__init__.py
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\webdriver\android\
     文件         787  2016-06-20 17:22  selenium-3.141.0\build\lib\selenium\webdriver\android\__init__.py
     文件        1735  2016-06-20 17:22  selenium-3.141.0\build\lib\selenium\webdriver\android\webdriver.py
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\webdriver\blackberry\
     文件         787  2015-07-15 05:49  selenium-3.141.0\build\lib\selenium\webdriver\blackberry\__init__.py
     文件        4870  2016-06-20 17:22  selenium-3.141.0\build\lib\selenium\webdriver\blackberry\webdriver.py
     目录           0  2020-02-24 11:41  selenium-3.141.0\build\lib\selenium\webdriver\chrome\
     文件         787  2015-07-15 05:49  selenium-3.141.0\build\lib\selenium\webdriver\chrome\__init__.py
     文件        6540  2018-10-09 22:25  selenium-3.141.0\build\lib\selenium\webdriver\chrome\options.py
     文件        1447  2018-06-26 20:11  selenium-3.141.0\build\lib\selenium\webdriver\chrome\remote_connection.py
     文件        1817  2016-06-20 17:22  selenium-3.141.0\build\lib\selenium\webdriver\chrome\service.py
     文件        6024  2018-10-09 22:25  selenium-3.141.0\build\lib\selenium\webdriver\chrome\webdriver.py
............此处省略214个文件信息

评论

共有 条评论