mirror of
https://github.com/status-im/desktop-qa-automation.git
synced 2025-02-24 01:58:22 +00:00
13 lines
356 B
Python
13 lines
356 B
Python
|
import configs
|
||
|
|
||
|
if configs.system.IS_WIN:
|
||
|
from .win.open_file_dialogs import OpenFileDialog as BaseOpenFileDialog
|
||
|
elif configs.system.IS_MAC:
|
||
|
from .mac.open_file_dialogs import OpenFileDialog as BaseOpenFileDialog
|
||
|
else:
|
||
|
from .lin.open_file_dialog import OpenFileDialog as BaseOpenFileDialog
|
||
|
|
||
|
|
||
|
class OpenFileDialog(BaseOpenFileDialog):
|
||
|
pass
|