@@ -191,7 +191,7 @@ def isNavigationRequest(self) -> bool:
191191 -------
192192 bool
193193 """
194- return mapping .from_maybe_impl (self ._sync ( self . _impl_obj .isNavigationRequest () ))
194+ return mapping .from_maybe_impl (self ._impl_obj .isNavigationRequest ())
195195
196196
197197mapping .register (RequestImpl , Request )
@@ -756,7 +756,7 @@ def asElement(self) -> typing.Union["ElementHandle", NoneType]:
756756 -------
757757 typing.Union[ElementHandle, NoneType]
758758 """
759- return mapping .from_impl_nullable (self ._sync ( self . _impl_obj .asElement () ))
759+ return mapping .from_impl_nullable (self ._impl_obj .asElement ())
760760
761761 def dispose (self ) -> NoneType :
762762 """JSHandle.dispose
@@ -797,7 +797,7 @@ def asElement(self) -> typing.Union["ElementHandle", NoneType]:
797797 -------
798798 typing.Union[ElementHandle, NoneType]
799799 """
800- return mapping .from_impl_nullable (self ._sync ( self . _impl_obj .asElement () ))
800+ return mapping .from_impl_nullable (self ._impl_obj .asElement ())
801801
802802 def ownerFrame (self ) -> typing .Union ["Frame" , NoneType ]:
803803 """ElementHandle.ownerFrame
@@ -2062,7 +2062,7 @@ def isDetached(self) -> bool:
20622062 -------
20632063 bool
20642064 """
2065- return mapping .from_maybe_impl (self ._sync ( self . _impl_obj .isDetached () ))
2065+ return mapping .from_maybe_impl (self ._impl_obj .isDetached ())
20662066
20672067 def addScriptTag (
20682068 self , url : str = None , path : str = None , content : str = None , type : str = None
@@ -3155,7 +3155,7 @@ def frame(
31553155 frame matching the criteria. Returns `null` if no frame matches.
31563156 """
31573157 return mapping .from_impl_nullable (
3158- self ._sync ( self . _impl_obj .frame (name = name , url = self ._wrap_handler (url ) ))
3158+ self ._impl_obj .frame (name = name , url = self ._wrap_handler (url ))
31593159 )
31603160
31613161 def setDefaultNavigationTimeout (self , timeout : int ) -> NoneType :
@@ -3178,7 +3178,7 @@ def setDefaultNavigationTimeout(self, timeout: int) -> NoneType:
31783178 Maximum navigation time in milliseconds
31793179 """
31803180 return mapping .from_maybe_impl (
3181- self ._sync ( self . _impl_obj .setDefaultNavigationTimeout (timeout = timeout ) )
3181+ self ._impl_obj .setDefaultNavigationTimeout (timeout = timeout )
31823182 )
31833183
31843184 def setDefaultTimeout (self , timeout : int ) -> NoneType :
@@ -3194,7 +3194,7 @@ def setDefaultTimeout(self, timeout: int) -> NoneType:
31943194 Maximum time in milliseconds
31953195 """
31963196 return mapping .from_maybe_impl (
3197- self ._sync ( self . _impl_obj .setDefaultTimeout (timeout = timeout ) )
3197+ self ._impl_obj .setDefaultTimeout (timeout = timeout )
31983198 )
31993199
32003200 def querySelector (self , selector : str ) -> typing .Union ["ElementHandle" , NoneType ]:
@@ -3974,7 +3974,7 @@ def viewportSize(self) -> typing.Union[Viewport, NoneType]:
39743974 -------
39753975 typing.Union[Viewport, NoneType]
39763976 """
3977- return mapping .from_maybe_impl (self ._sync ( self . _impl_obj .viewportSize () ))
3977+ return mapping .from_maybe_impl (self ._impl_obj .viewportSize ())
39783978
39793979 def bringToFront (self ) -> NoneType :
39803980 """Page.bringToFront
@@ -4149,7 +4149,7 @@ def isClosed(self) -> bool:
41494149 -------
41504150 bool
41514151 """
4152- return mapping .from_maybe_impl (self ._sync ( self . _impl_obj .isClosed () ))
4152+ return mapping .from_maybe_impl (self ._impl_obj .isClosed ())
41534153
41544154 def click (
41554155 self ,
@@ -5003,7 +5003,7 @@ def setDefaultNavigationTimeout(self, timeout: int) -> NoneType:
50035003 Maximum navigation time in milliseconds
50045004 """
50055005 return mapping .from_maybe_impl (
5006- self ._sync ( self . _impl_obj .setDefaultNavigationTimeout (timeout = timeout ) )
5006+ self ._impl_obj .setDefaultNavigationTimeout (timeout = timeout )
50075007 )
50085008
50095009 def setDefaultTimeout (self , timeout : int ) -> NoneType :
@@ -5019,7 +5019,7 @@ def setDefaultTimeout(self, timeout: int) -> NoneType:
50195019 Maximum time in milliseconds
50205020 """
50215021 return mapping .from_maybe_impl (
5022- self ._sync ( self . _impl_obj .setDefaultTimeout (timeout = timeout ) )
5022+ self ._impl_obj .setDefaultTimeout (timeout = timeout )
50235023 )
50245024
50255025 def newPage (self ) -> "Page" :
@@ -5374,7 +5374,7 @@ def isConnected(self) -> bool:
53745374 -------
53755375 bool
53765376 """
5377- return mapping .from_maybe_impl (self ._sync ( self . _impl_obj .isConnected () ))
5377+ return mapping .from_maybe_impl (self ._impl_obj .isConnected ())
53785378
53795379 def newContext (
53805380 self ,
0 commit comments