What Type of Modules can & cannot we test in Automated Test Framework ?

kvamsikrishna
Mega Expert

Hi

Can Anybody help on,

What Type of Modules we can test in Automated Test Framework ? and

What Type of Modules cannot be   tested in Automated Test Framework ?

Advance Thanks

5 REPLIES 5

Chuck Tomasi
Tera Patron

Hi Vamsi,



ATF (as of I/J/K) will work with standard lists and forms only. It is not specific to the type of module as I think of it (URL from arguments, list of records, etc.)



https://docs.servicenow.com/bundle/kingston-servicenow-platform/page/administer/auto-test-framework/...


Hi Chuck



Thank You For your Quick Response



we   have implemented a project and in that we have worked on these modules..



Forms


Business Rules


Data Policies


UI Policies


Change Management


Service Catalogue


Script Includes


Notifications


Scheduled Jobs


Client Scripts


Work flows



In these what is the possibility of ATF, I've gone through the ATF doc and I'm unable to find CAN's and CANNOTS   in specific to all of these, please can you help me on these?



Thanks in Advance!!


Vamsi


ATF is used for functional testing. Some of these, like Script Includes need to be tested with Unit Testing.



For example, you might have a client script that triggers a script include that set Assignment Group based on the the category of an incident. You don't test the client script include directly, you use an assertion in ATF to ensure you got the expected result.



make sense?


Hi Chuck



I need More clarity on ATF


Can We check notifications,email notification scripts, Scheduled jobs and Reports in Automated Test Framework ?


Can You Please Help on this



for testing purpose i wrote one notification


when incident priority is high, notification should be sent some person(xxxx@gmail.com)


so i wrote 3 test cases


1-->open incident table


2-->set field values(priority is high, and filled some mandatory fields)


3-->submit form


now how can i check the email is sent to(xxxx@gmail.com) this person through ATF



After 3rd step i don't know which step i have to add to check notification have been sent to that particular person (xxxx@gmail.com)



Thank You