An item created for sale or use.
a random product
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.product.product())
}
Output (formatted as JSON value)
{"Name":"Quartz Teal Scale","Description":"Bravo mirror hundreds his party nobody. Anything wit she from above Chinese those choir toilet as you of other enormously.","Categories":["mobile phones","food and groceries","furniture"],"Price":82.9,"Features":["durable"],"Color":"green","Material":"bronze","UPC":"084020104876"}
Explanation detailing the features and characteristics of a product.
a random product description
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.product.productDescription())
}
Output (formatted as JSON value)
"Up brace lung anyway then bravo mirror hundreds his party. Person anything wit she from above Chinese those choir toilet as you."
Generator to generate product related entries.