Skip to content

Commit

Permalink
Update code to handle Selenium 4.10 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwickenden committed Oct 16, 2023
1 parent 1b3d352 commit b7f3554
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tests
name: Run tests

on: [workflow_call]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"beautifulsoup4>=4.0",
"lxml>=4.8",
"requests>=2.0",
"selenium>=4.8",
"selenium>=4.10",
]

[project.readme]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
beautifulsoup4>=4.0
lxml>=4.8
requests>=2.0
selenium>=4.8
selenium>=4.10
2 changes: 1 addition & 1 deletion sricheck/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.7.3"
__version__ = "1.8.0"
2 changes: 1 addition & 1 deletion sricheck/sricheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_html(self):
}
}

browser = webdriver.Chrome("chromedriver", options=chrome_options)
browser = webdriver.Chrome(options=chrome_options)

def interceptor(request):
request.headers.update(self.headers)
Expand Down

0 comments on commit b7f3554

Please sign in to comment.