Search code examples
javaselenium-webdriverdynamics-crmui-automationmodular-design

What's the best approach for modular apps UI test scripts?


I'd like to know if any of You have experience in automation UI testing of modular-like apps. The whole app is like all typical CRM-related apps, where based on Your personal client needs You just put together some of the available modules (that have been predefined earlier) in order to provide all necessary functionalities.

If there would be "static" app built of all these modules put together then we could test it in a quite easy way, just going through all defined test classes, because we would know the behaviour/interactions between all these modules.

But in case we would need to test app behaviour while putting some of its random pieces/modules together in order to check if they work well, we would need some other approach.

If there's a solution, some recommended architect pattern or anything that can help me to perform such automation tests (using i.e. Selenium WebDriver)? Or does this kind of tests are even possible to perform using WebDriver library?

I'd be grateful if You'll share any of Your thoughts and experiences in this area.


Solution

  • In case some further researcher will look for the know-how solution for this case, we can just set some different test suites for each of app modules, and then we can check each suits for some certain condition met. If some suit won't meet this condition then we'll just skip this test suites. I.e we can get the app bundles.json file, which will most likely contain all information concerning app modules, and then we can just process this file to search for modules which are unavailable in current deployed app.

    Look this as nice reference on how to achieve this: Introducing to conditional test running in TestNG