Help for this page

Select Code to Download


  1. or download this
    <testsuites>
      <testsuite name="test_suite_name" ...>
    ...
        <testcase name="test2" .../>
      <testsuite name="some_name" ...>
    </testsuites>
    
  2. or download this
    my $dom  = XML::LibXML::Document->new('1.0', 'utf-8');
    my $xml1 = XML::LibXML->load_xml(location => 'file1.xml');
    ...
    open XML, ">result.xml";
    print XML $dom->toString();
    close XML;