brianlardner
Member
Hi, I am trying to use pabbly code (python), and I need to work with a xml file. So I am taking the input, but is is not taking xml in a variable.
here is my code, that I wrote to test:
and here is the log I get:
So here we can see that, it is not showing xml in log. and I also cannot do anything with the xml text also. How can I take and format xml in python in pabbly?
here is my code, that I wrote to test:
Python:
records="""
<records>
<record LeadId="1287567" FirstName="JAMES" LastName="DEAN" Address="555 Main Ave Apt 307" ZIP="33433" FolderType="Not Active" ORDERRECORDID="1374" FICO="800" FHA_Mortgage_Balance="300000" VA_Mortgage_Balance="250000" Conv_mortgage_balance="100000" LTV05="81" LEVEL="FHA ITMA" Email="[email protected]" PHONE="555-811-0998" STATE="FL" />
</records>
"""
print("***")
print(records)
record="""
test
"""
print("***")
print(record)
and here is the log I get:
Code:
***
***
test