Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
lidong committed Feb 9, 2023
2 parents ebe3a3e + 939448c commit d4fd802
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ichrome/async_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2556,6 +2556,14 @@ async def set_geolocation_override(self,
timeout=timeout)
return data

async def scrollIntoView(self,
cssselector: str,
action='scrollIntoView()',
timeout=NotSet) -> Union[Tag, TagNotFound]:
return await self.querySelector(cssselector=cssselector,
action=action,
timeout=timeout)


class OffsetMoveWalker:
__slots__ = ('path', 'start_x', 'start_y', 'tab', 'timeout')
Expand Down

0 comments on commit d4fd802

Please sign in to comment.