Questions about Test Script schema for import
The following xml is from IBM for what to use to import a test script.
I'm working OFFLINE.
What do i put for the xmlns when i am offline.
Do i use www.w3.org/1999 ? I don't know what that is exactly.
<?xml version="1.0" encoding="UTF-8"?>
<testscript xmlns="http://jazz.net/xmlns/alm/qm/v0.1/">
<title xmlns="http://purl.org/dc/elements/1.1/">New Customer Order Test Script</title>
<description xmlns="http://purl.org/dc/elements/1.1/">Steps to manually test the Customer Order functionality</description>
<category xmlns="http://jazz.net/xmlns/alm/qm/v0.1/" value="Web UI" term="Function"/>
<steps xmlns="http://jazz.net/xmlns/alm/qm/v0.1/">
<step xmlns="http://jazz.net/xmlns/alm/qm/v0.1/testscript/v0.1/" type="execution">
<description>
<div xmlns="http://www.w3.org/1999/xhtml">Log in to the system</div>
</description>
<expectedResult>
<div xmlns="http://www.w3.org/1999/xhtml">Login succeeds</div>
</expectedResult>
</step>
<step type="execution">
<description>
<div xmlns="http://www.w3.org/1999/xhtml">Place an order</div>
</description>
<expectedResult>
<div xmlns="http://www.w3.org/1999/xhtml">An order is created in the system</div>
</expectedResult>
</step>
</steps>
</testscript>