Skip to content

Commit f015121

Browse files
authored
Merge pull request #1799 from seleniumbase/dependencies-and-examples
Dependencies and examples
2 parents 8a2b6fb + d09383e commit f015121

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

examples/boilerplates/samples/google_objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class HomePage(object):
55
dialog_box = '[role="dialog"] div'
6-
search_box = 'input[title="Search"]'
6+
search_box = '[title="Search"]'
77
search_button = 'input[value="Google Search"]'
88
feeling_lucky_button = """input[value="I'm Feeling Lucky"]"""
99

examples/boilerplates/samples/test_page_objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ def go_to_google(self, sb):
1111
sb.sleep(0.1)
1212

1313
def do_search(self, sb, search_term):
14-
sb.click('input[title="Search"]')
15-
sb.type('input[title="Search"]', search_term + "\n")
14+
sb.click('[title="Search"]')
15+
sb.type('[title="Search"]', search_term + "\n")
1616

1717
def click_search_result(self, sb, content):
1818
sb.click('a:contains("%s")' % content)

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ certifi>=2022.12.7
1919
filelock>=3.4.1;python_version<"3.7"
2020
filelock>=3.9.0;python_version>="3.7"
2121
platformdirs>=2.4.0;python_version<"3.7"
22-
platformdirs>=3.1.0;python_version>="3.7"
22+
platformdirs>=3.1.1;python_version>="3.7"
2323
pyparsing>=3.0.7;python_version<"3.7"
2424
zipp==3.6.0;python_version<"3.7"
2525
zipp>=3.15.0;python_version>="3.7"
@@ -32,7 +32,7 @@ chardet==5.1.0;python_version>="3.7"
3232
charset-normalizer==2.0.12;python_version<"3.7"
3333
charset-normalizer==3.1.0;python_version>="3.7"
3434
urllib3==1.26.12;python_version<"3.7"
35-
urllib3==1.26.14;python_version>="3.7"
35+
urllib3==1.26.15;python_version>="3.7"
3636
requests==2.27.1;python_version<"3.7"
3737
requests==2.28.2;python_version>="3.7"
3838
requests-toolbelt==0.10.1

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.13.10"
2+
__version__ = "4.13.11"

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def main():
477477
' self.open("https://seleniumbase.io/help_docs/how_it_works/")'
478478
)
479479
data.append(
480-
' self.type(\'input[aria-label="Search"]\', search_term)'
480+
' self.type(\'[aria-label="Search"]\', search_term)'
481481
)
482482
data.append(' self.click(\'mark:contains("%s")\' % keyword)')
483483
data.append(' self.assert_title_contains(title_text)')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
'filelock>=3.4.1;python_version<"3.7"',
144144
'filelock>=3.9.0;python_version>="3.7"',
145145
'platformdirs>=2.4.0;python_version<"3.7"',
146-
'platformdirs>=3.1.0;python_version>="3.7"',
146+
'platformdirs>=3.1.1;python_version>="3.7"',
147147
'pyparsing>=3.0.7;python_version<"3.7"',
148148
'zipp==3.6.0;python_version<"3.7"',
149149
'zipp>=3.15.0;python_version>="3.7"',
@@ -156,7 +156,7 @@
156156
'charset-normalizer==2.0.12;python_version<"3.7"',
157157
'charset-normalizer==3.1.0;python_version>="3.7"', # Sync "requests"
158158
'urllib3==1.26.12;python_version<"3.7"',
159-
'urllib3==1.26.14;python_version>="3.7"',
159+
'urllib3==1.26.15;python_version>="3.7"',
160160
'requests==2.27.1;python_version<"3.7"',
161161
'requests==2.28.2;python_version>="3.7"',
162162
'requests-toolbelt==0.10.1',

0 commit comments

Comments
 (0)