I have some XML, pasted below and also attached.
<suite>
<testcase id="001" kind="bvt">
<inputs>
<arg1>4</arg1>
<arg2>7</arg2>
</inputs>
<expected>11.00</expected>
</testcase>
<testcase id="002" kind="drt">
<inputs>
<arg1>9</arg1>
<arg2>6</arg2>
</inputs>
<expected>15.00</expected>
</testcase>
</suite>
I'd like Alteryx to ingest this as:
id kind arg1 arg2 expected
1 bvt 4 7 11
2 drt 9 6 15
I have a solution attached and pictured below:
First step
Subsequent step
That subsequent step would need to be repeated, I think, if the XML nesting was deeper.
Is there a solution that will work no matter how deep the nesting?