A few questions while building an AEM custom functional test:
To build a test for a custom component, such as the one below, what kind of arguments are needed. What should be the format of the argument?
Are there any demos available to use as a reference?
AEM Functional Testing Reference: https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/using-...
Solved! Go to Solution.
Views
Replies
Total Likes
I did not get the exact ask assuming that you are talking about running the ui.test and it.test reference can you refer to below project as an example and try
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/ui.tests
Hope this is useful
I did not get the exact ask assuming that you are talking about running the ui.test and it.test reference can you refer to below project as an example and try
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/ui.tests
Hope this is useful
@Kabrawalaak you can ref. to this: https://www.youtube.com/watch?v=yJX6r3xRLHU
Hi @Kabrawalaak @Manu_Mathew_ @Jagadeesh_Prakash ,
How to set date property to component in it.test functional testing.
TestComponent com = new TestComponent(componentclient, xfPath,"/master/jcr:content/root/componenent", "comp");
com.setProperty("html", "test");
we have option to set string and string[] and int values but not date property. i am extending the
AbstractComponent.
import com.adobe.cq.testing.client.ComponentClient;
import com.adobe.cq.testing.client.components.AbstractComponent;
Could you please help here.
Thanks in advance.
Views
Replies
Total Likes