mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-23 03:58:49 +00:00
10 lines
269 B
Python
10 lines
269 B
Python
|
def close_exists(element):
|
||
|
def _wrapper(method_to_decorate):
|
||
|
def wrapper(*args, **kwargs):
|
||
|
if element.is_visible:
|
||
|
element.close()
|
||
|
return method_to_decorate(*args, **kwargs)
|
||
|
|
||
|
return wrapper
|
||
|
|
||
|
return _wrapper
|