Web Form Field Not Exporting via Fixtures

I wanted to add a resume attachment field in job application web form so i did via webforms then while exporting it shows blank json file web form. Is this the wrong way to do so. How can i edit the core webform from Frappe Apps and export it

After resume attachment field added in Job Application web form you can try this.

fixtures = [
    {
        "doctype": "Web Form",
        "filters": [
            ["doc_type", "in", ["Job Applicant"]]
        ]
    }
]

1 Like