NotepadTests implies that we're testing the notepad application, which shouldn't be webdriver-swift's job. However, we are interested in testing WinAppDriver's processing of specific requests. We should split the current WebDriverTests into:
WinAppDriverTests: Tests organized and named according to the requests being tested, without trying to accomplish a specific application scenario. The actual app being used isn't so important.
Samples: Sample usages of webdriver-swift (WinAppDriver-based or not) which implement meaningful user scenarios with specific apps.
NotepadTests
implies that we're testing the notepad application, which shouldn't bewebdriver-swift
's job. However, we are interested in testing WinAppDriver's processing of specific requests. We should split the currentWebDriverTests
into:WinAppDriverTests
: Tests organized and named according to the requests being tested, without trying to accomplish a specific application scenario. The actual app being used isn't so important.Samples
: Sample usages ofwebdriver-swift
(WinAppDriver-based or not) which implement meaningful user scenarios with specific apps.