Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #574 from sterliakov/master
Browse files Browse the repository at this point in the history
Versions fixup
  • Loading branch information
wkeeling committed Jul 9, 2022
2 parents c08cca8 + 7984282 commit de51d5c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cibuild.yml
Expand Up @@ -42,6 +42,8 @@ jobs:
py: 3.9
- os: macos-latest
py: 3.9
- os: ubuntu-latest
py: '3.10'
- os: ubuntu-latest
py: 3.9
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -9,7 +9,7 @@ Selenium Wire extends `Selenium's <https://www.selenium.dev/documentation/en/>`_
.. image:: https://codecov.io/gh/wkeeling/selenium-wire/branch/master/graph/badge.svg
:target: https://codecov.io/gh/wkeeling/selenium-wire

.. image:: https://img.shields.io/badge/python-3.6%2C%203.7%2C%203.8%2C%203.9-blue.svg
.. image:: https://img.shields.io/badge/python-3.6%2C%203.7%2C%203.8%2C%203.9%2C%203.10-blue.svg
:target: https://pypi.python.org/pypi/selenium-wire

.. image:: https://img.shields.io/pypi/v/selenium-wire.svg
Expand Down
2 changes: 1 addition & 1 deletion seleniumwire/__init__.py
Expand Up @@ -3,4 +3,4 @@
"""Top-level package for Selenium Wire."""

__author__ = """Will Keeling"""
__version__ = '4.6.4'
__version__ = '4.6.5'
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.6.4
current_version = 4.6.5
commit = True
tag = True
tag_name = {new_version}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -25,6 +25,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="Extends Selenium to give you the ability to inspect requests made by the browser.",
license="MIT",
Expand All @@ -43,7 +44,6 @@
'pyparsing>=2.4.2',
'pysocks>=1.7.1',
'selenium>=3.4.0',
'werkzeug==2.0.3',
'wsproto>=0.14',
'zstandard>=0.14.1',
],
Expand Down Expand Up @@ -80,6 +80,6 @@
test_suite='tests.seleniumwire',
tests_require=['pytest'],
url='https://github.com/wkeeling/selenium-wire',
version='4.6.4',
version='4.6.5',
zip_safe=False,
)
3 changes: 2 additions & 1 deletion tests/end2end/test_end2end.py
Expand Up @@ -13,6 +13,7 @@

import pytest
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.by import By

import seleniumwire
from seleniumwire import webdriver
Expand Down Expand Up @@ -263,7 +264,7 @@ def interceptor(req):

form = Path(__file__).parent / 'jsonform.html'
driver.get(f'file:///{str(form)}')
button = driver.find_element_by_id('submit')
button = driver.find_element(By.ID, 'submit')
button.click() # Makes Ajax request so need to wait for it
request = driver.wait_for_request('/post')

Expand Down

0 comments on commit de51d5c

Please sign in to comment.