mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
fe724ef186
* test(pytest) The driver methods added. Wrappers for UI elements added. #67 * test(pytest) Squishserver added #68 * test(pytest) Attach/Detach AUT methods added #69 * test(pytest) Main window handler added #70 * test(pytest) Save screenshot on fail added #71 * test(pytest) Wait for squishserver added #71 * test(pytest) Setup Windows #71 * Generate new keys (#11804) * test(pytest) Image comparison methods added #76 * test(pytest) Tesseract methods added #77 * test(pytest) The Methods to search color on image added #80 * test(onboarding) Test on generation new keys added #75 * test(pytest) Handlers for OS Native File dialog added #81 * test(Onboarding) Test on Profile image added #83 * Allure and TestRail integration (#11806) * test(Allure) Steps descriptions added #72 * test(TestRail) Integration #72
29 lines
633 B
Python
Executable File
29 lines
633 B
Python
Executable File
import squishtest # noqa
|
|
|
|
import configs
|
|
from . import server, context, objects_access, toplevel_window, aut, atomacos, mouse
|
|
|
|
imports = {module.__name__: module for module in [
|
|
atomacos,
|
|
aut,
|
|
context,
|
|
objects_access,
|
|
mouse,
|
|
server,
|
|
toplevel_window
|
|
|
|
]}
|
|
|
|
|
|
def __getattr__(name):
|
|
if name in imports:
|
|
return imports[name]
|
|
try:
|
|
return getattr(squishtest, name)
|
|
except AttributeError:
|
|
raise ImportError(f'Module "driver" has no attribute "{name}"')
|
|
|
|
|
|
squishtest.testSettings.waitForObjectTimeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
|
squishtest.setHookSubprocesses(True)
|