Skip to content

Commit 8705b35

Browse files
authored
chore(roll): roll Playwright to 1.40.0-beta-1700587209000 (#2171)
1 parent d332719 commit 8705b35

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

Diff for: playwright/_impl/_assertions.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,13 @@ async def not_to_have_attribute(
233233
self,
234234
name: str,
235235
value: Union[str, Pattern[str]],
236+
ignore_case: bool = None,
236237
timeout: float = None,
237238
) -> None:
238239
__tracebackhide__ = True
239-
await self._not.to_have_attribute(name, value, timeout=timeout)
240+
await self._not.to_have_attribute(
241+
name, value, ignore_case=ignore_case, timeout=timeout
242+
)
240243

241244
async def to_have_class(
242245
self,

Diff for: playwright/async_api/_generated.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -19488,6 +19488,7 @@ async def not_to_have_attribute(
1948819488
name: str,
1948919489
value: typing.Union[str, typing.Pattern[str]],
1949019490
*,
19491+
ignore_case: typing.Optional[bool] = None,
1949119492
timeout: typing.Optional[float] = None
1949219493
) -> None:
1949319494
"""LocatorAssertions.not_to_have_attribute
@@ -19500,14 +19501,17 @@ async def not_to_have_attribute(
1950019501
Attribute name.
1950119502
value : Union[Pattern[str], str]
1950219503
Expected attribute value.
19504+
ignore_case : Union[bool, None]
19505+
Whether to perform case-insensitive match. `ignoreCase` option takes precedence over the corresponding regular
19506+
expression flag if specified.
1950319507
timeout : Union[float, None]
1950419508
Time to retry the assertion for in milliseconds. Defaults to `5000`.
1950519509
"""
1950619510
__tracebackhide__ = True
1950719511

1950819512
return mapping.from_maybe_impl(
1950919513
await self._impl_obj.not_to_have_attribute(
19510-
name=name, value=value, timeout=timeout
19514+
name=name, value=value, ignore_case=ignore_case, timeout=timeout
1951119515
)
1951219516
)
1951319517

Diff for: playwright/sync_api/_generated.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -19652,6 +19652,7 @@ def not_to_have_attribute(
1965219652
name: str,
1965319653
value: typing.Union[str, typing.Pattern[str]],
1965419654
*,
19655+
ignore_case: typing.Optional[bool] = None,
1965519656
timeout: typing.Optional[float] = None
1965619657
) -> None:
1965719658
"""LocatorAssertions.not_to_have_attribute
@@ -19664,6 +19665,9 @@ def not_to_have_attribute(
1966419665
Attribute name.
1966519666
value : Union[Pattern[str], str]
1966619667
Expected attribute value.
19668+
ignore_case : Union[bool, None]
19669+
Whether to perform case-insensitive match. `ignoreCase` option takes precedence over the corresponding regular
19670+
expression flag if specified.
1966719671
timeout : Union[float, None]
1966819672
Time to retry the assertion for in milliseconds. Defaults to `5000`.
1966919673
"""
@@ -19672,7 +19676,7 @@ def not_to_have_attribute(
1967219676
return mapping.from_maybe_impl(
1967319677
self._sync(
1967419678
self._impl_obj.not_to_have_attribute(
19675-
name=name, value=value, timeout=timeout
19679+
name=name, value=value, ignore_case=ignore_case, timeout=timeout
1967619680
)
1967719681
)
1967819682
)

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
InWheel = None
3131
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
3232

33-
driver_version = "1.40.0"
33+
driver_version = "1.40.0-beta-1700587209000"
3434

3535

3636
def extractall(zip: zipfile.ZipFile, path: str) -> None:

0 commit comments

Comments
 (0)