1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <operations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataOperation.xsd">
- <operation name="CreateUser" dataType="user" type="create"
- auth="adminFormKey" url="/admin/user/save/" method="POST" successRegex="/messages-message-success/" returnRegex="" >
- <contentType>application/x-www-form-urlencoded</contentType>
- <field key="username">string</field>
- <field key="firstname">string</field>
- <field key="lastname">string</field>
- <field key="email">string</field>
- <field key="password">string</field>
- <field key="password_confirmation">string</field>
- <field key="interface_locale">string</field>
- <field key="is_active">boolean</field>
- <field key="current_password">string</field>
- <array key="roles">
- <value>string</value>
- </array>
- </operation>
- </operations>
|