2021-10-28 19:32:31 +00:00
|
|
|
{
|
|
|
|
"url": "http://localhost:8084/",
|
2022-03-18 21:53:19 +00:00
|
|
|
"appName": "woocommerce_e2e",
|
2021-10-28 19:32:31 +00:00
|
|
|
"users": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"admin": {
|
|
|
|
"username": "admin",
|
|
|
|
"password": "password"
|
|
|
|
},
|
|
|
|
"customer": {
|
|
|
|
"username": "customer",
|
|
|
|
"password": "password"
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"products": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"simple": {
|
|
|
|
"name": "Simple product"
|
|
|
|
},
|
|
|
|
"variable": {
|
|
|
|
"name": "Variable Product with Three Attributes",
|
|
|
|
"defaultAttributes": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Size",
|
|
|
|
"option": "Medium"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Colour",
|
|
|
|
"option": "Blue"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"attributes": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Colour",
|
|
|
|
"isVisibleOnProductPage": true,
|
|
|
|
"isForVariations": true,
|
|
|
|
"options": [
|
|
|
|
"Red",
|
|
|
|
"Green",
|
|
|
|
"Blue"
|
|
|
|
],
|
|
|
|
"sortOrder": 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Size",
|
|
|
|
"isVisibleOnProductPage": true,
|
|
|
|
"isForVariations": true,
|
|
|
|
"options": [
|
|
|
|
"Small",
|
|
|
|
"Medium",
|
|
|
|
"Large"
|
|
|
|
],
|
|
|
|
"sortOrder": 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Logo",
|
|
|
|
"isVisibleOnProductPage": true,
|
|
|
|
"isForVariations": true,
|
|
|
|
"options": [
|
|
|
|
"Woo",
|
|
|
|
"WordPress"
|
|
|
|
],
|
|
|
|
"sortOrder": 0
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"variations": [
|
|
|
|
{
|
|
|
|
"regularPrice": "19.99",
|
|
|
|
"attributes": [
|
|
|
|
{
|
|
|
|
"name": "Size",
|
|
|
|
"option": "Large"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Colour",
|
|
|
|
"option": "Red"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"regularPrice": "18.99",
|
|
|
|
"attributes": [
|
|
|
|
{
|
|
|
|
"name": "Size",
|
|
|
|
"option": "Medium"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Colour",
|
|
|
|
"option": "Green"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"regularPrice": "17.99",
|
|
|
|
"attributes": [
|
|
|
|
{
|
|
|
|
"name": "Size",
|
|
|
|
"option": "Small"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Colour",
|
|
|
|
"option": "Blue"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"grouped": {
|
|
|
|
"name": "Grouped Product with Three Children",
|
|
|
|
"groupedProducts": [
|
|
|
|
{
|
|
|
|
"name": "Base Unit",
|
|
|
|
"regularPrice": "29.99"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Add-on A",
|
|
|
|
"regularPrice": "11.95"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Add-on B",
|
|
|
|
"regularPrice": "18.97"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"external": {
|
|
|
|
"name": "External product",
|
|
|
|
"regularPrice": "24.99",
|
|
|
|
"buttonText": "Buy now",
|
|
|
|
"externalUrl": "https://wordpress.org/plugins/woocommerce"
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"coupons": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"percentage": {
|
|
|
|
"code": "20percent",
|
|
|
|
"discountType": "percent",
|
|
|
|
"amount": "20.00"
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"addresses": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"admin": {
|
|
|
|
"store": {
|
|
|
|
"email": "admin@woocommercecoree2etestsuite.com",
|
|
|
|
"firstname": "John",
|
|
|
|
"lastname": "Doe",
|
|
|
|
"company": "Automattic",
|
|
|
|
"country": "United States (US)",
|
|
|
|
"addressfirstline": "addr 1",
|
|
|
|
"addresssecondline": "addr 2",
|
|
|
|
"countryandstate": "United States (US) — California",
|
|
|
|
"city": "San Francisco",
|
|
|
|
"state": "CA",
|
|
|
|
"postcode": "94107"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"customer": {
|
|
|
|
"billing": {
|
|
|
|
"firstname": "John",
|
|
|
|
"lastname": "Doe",
|
|
|
|
"company": "Automattic",
|
|
|
|
"country": "United States (US)",
|
|
|
|
"addressfirstline": "addr 1",
|
|
|
|
"addresssecondline": "addr 2",
|
|
|
|
"city": "San Francisco",
|
|
|
|
"state": "CA",
|
|
|
|
"postcode": "94107",
|
|
|
|
"phone": "123456789",
|
|
|
|
"email": "john.doe@example.com"
|
|
|
|
},
|
|
|
|
"shipping": {
|
|
|
|
"firstname": "John",
|
|
|
|
"lastname": "Doe",
|
|
|
|
"company": "Automattic",
|
|
|
|
"country": "United States (US)",
|
|
|
|
"addressfirstline": "addr 1",
|
|
|
|
"addresssecondline": "addr 2",
|
|
|
|
"city": "San Francisco",
|
|
|
|
"state": "CA",
|
|
|
|
"postcode": "94107"
|
|
|
|
}
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"orders": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"basicPaidOrder": {
|
|
|
|
"paymentMethod": "cod",
|
|
|
|
"status": "processing",
|
|
|
|
"billing": {
|
|
|
|
"firstName": "John",
|
|
|
|
"lastName": "Doe",
|
|
|
|
"email": "john.doe@example.com"
|
|
|
|
}
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"onboardingwizard": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"industry": "Test industry",
|
|
|
|
"numberofproducts": "1 - 10",
|
|
|
|
"sellingelsewhere": "No"
|
2021-10-28 19:32:31 +00:00
|
|
|
},
|
|
|
|
"settings": {
|
2022-03-18 21:53:19 +00:00
|
|
|
"shipping": {
|
|
|
|
"zonename": "United States",
|
|
|
|
"zoneregions": "United States (US)",
|
|
|
|
"shippingmethod": "Free shipping"
|
|
|
|
}
|
2021-10-28 19:32:31 +00:00
|
|
|
}
|
|
|
|
}
|