diff --git a/examples/test_parse_soup.py b/examples/test_parse_soup.py index 497a92b53aa..669a872f2dc 100644 --- a/examples/test_parse_soup.py +++ b/examples/test_parse_soup.py @@ -9,7 +9,7 @@ def click_menu_item(self, text): # (This is useful when the selector ID is auto-generated.) pattern = re.compile(text) soup = self.get_beautiful_soup() - the_id = soup.find(text=pattern).parent.parent.attrs["id"] + the_id = soup.find(string=pattern).parent.parent.attrs["id"] self.click("#%s" % the_id) def test_beautiful_soup_and_tinymce(self): diff --git a/mkdocs_build/requirements.txt b/mkdocs_build/requirements.txt index 8120b7cb5d3..2631f2d2fe9 100644 --- a/mkdocs_build/requirements.txt +++ b/mkdocs_build/requirements.txt @@ -9,7 +9,7 @@ livereload==2.6.3 joblib==1.1.0 Markdown==3.3.6 MarkupSafe==2.1.1 -pyparsing==3.0.7 +pyparsing==3.0.8 keyring==23.5.0 pkginfo==1.8.2 Jinja2==3.1.1 @@ -18,13 +18,13 @@ zipp==3.8.0 readme-renderer==34.0 pymdown-extensions==9.3 importlib-metadata==4.11.3 -bleach==4.1.0 +bleach==5.0.0 jsmin==3.0.1 lunr==0.6.2 nltk==3.7 watchdog==2.1.7 mkdocs==1.3.0 -mkdocs-material==8.2.8 +mkdocs-material==8.2.9 mkdocs-exclude-search==0.6.4 mkdocs-simple-hooks==0.1.5 mkdocs-material-extensions==1.0.3 diff --git a/requirements.txt b/requirements.txt index 79899044504..eb368adbc9d 100755 --- a/requirements.txt +++ b/requirements.txt @@ -83,9 +83,10 @@ parameterized==0.8.1 sbvirtualdisplay==1.0.0 soupsieve==1.9.6;python_version<"3.5" soupsieve==2.1;python_version>="3.5" and python_version<"3.6" -soupsieve==2.3.1;python_version>="3.6" +soupsieve==2.3.2;python_version>="3.6" beautifulsoup4==4.9.3;python_version<"3.5" -beautifulsoup4==4.10.0;python_version>="3.5" +beautifulsoup4==4.10.0;python_version>="3.5" and python_version<"3.6" +beautifulsoup4==4.11.1;python_version>="3.6" cryptography==2.9.2;python_version<"3.5" cryptography==3.2.1;python_version>="3.5" and python_version<"3.6" cryptography==36.0.2;python_version>="3.6" diff --git a/seleniumbase/__version__.py b/seleniumbase/__version__.py index bad7fe3d4e1..208b10b5f60 100755 --- a/seleniumbase/__version__.py +++ b/seleniumbase/__version__.py @@ -1,2 +1,2 @@ # seleniumbase package -__version__ = "2.4.31" +__version__ = "2.4.32" diff --git a/setup.py b/setup.py index 2fc32d31742..9136d03eadf 100755 --- a/setup.py +++ b/setup.py @@ -208,9 +208,10 @@ "sbvirtualdisplay==1.0.0", 'soupsieve==1.9.6;python_version<"3.5"', 'soupsieve==2.1;python_version>="3.5" and python_version<"3.6"', - 'soupsieve==2.3.1;python_version>="3.6"', + 'soupsieve==2.3.2;python_version>="3.6"', 'beautifulsoup4==4.9.3;python_version<"3.5"', - 'beautifulsoup4==4.10.0;python_version>="3.5"', + 'beautifulsoup4==4.10.0;python_version>="3.5" and python_version<"3.6"', # noqa: E501 + 'beautifulsoup4==4.11.1;python_version>="3.6"', 'cryptography==2.9.2;python_version<"3.5"', 'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"', 'cryptography==36.0.2;python_version>="3.6"',