XML Articles

Page 3 of 3

How to incorporate and remove test methods from execution from ancollection of test cases in TestNG?

Debomita Bhattacharjee
Debomita Bhattacharjee
Updated on 11-Jun-2020 431 Views

We can incorporate and remove test methods from execution with the help of tags in testng xml file.ExampleTestng xml file.                                                                                       The testNG xml has groups Smoke to be included and CodingModule to be excluded from the execution.Example@Test(groups={"Smoke"}) public void ContactDetails(){    System.out.println(“Contact details verification is successful”); } @Test(groups={"CodingModule"}) ...

Read More

Generating SAP ABAP code/ script from XML coming from an external application

Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 953 Views

Yes, this is feasible. You can create simple transformation for XML in ABAP. You can also use cl_proxy_xml_transform to transform data between XML and ABAP. Let us say that you have created ABAP proxy using T-Code: SPROXY or it is generated via WebService generation utility, you can use utility class “cl_proxy_xml_transform” to convert data of the ABAP to XML format or also from XML → ABAP.

Read More
Showing 21–22 of 22 articles
« Prev 1 2 3 Next »
Advertisements