oca-ocb-technical/odoo-bringout-oca-ocb-barcodes/barcodes/static/tests/legacy/helpers.js
Ernad Husremovic 2696f14ed7 19.0 vanilla
2026-03-09 09:32:34 +01:00

9 lines
273 B
JavaScript

import { triggerEvent } from "@web/../tests/helpers/utils";
export function simulateBarCode(chars, target = document.body, selector = undefined) {
for (let char of chars) {
triggerEvent(target, selector, "keydown", {
key: char,
});
}
}