Skip to content

Commit 11cf85d

Browse files
committed
add get_page_url
1 parent 038cfd7 commit 11cf85d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

phantomime/phantomime.py

+8
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,14 @@ def get_page_title() -> str:
261261
return _driver.title
262262

263263

264+
@decorators._must_have_driver_initialized
265+
def get_page_url() -> str:
266+
"""
267+
Returns the URL of the current page.
268+
"""
269+
return _driver.current_url
270+
271+
264272
@decorators._must_have_driver_initialized
265273
def scroll_page():
266274
"""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='phantomime',
5-
version='v2.5.0-alpha',
5+
version='v2.6.0-alpha',
66
packages=find_packages(),
77
url='https://github.com/psyb0t/phantomime',
88
license='WTFPL',

0 commit comments

Comments
 (0)