Handle the case where there are no input elements in the DOM when selecting files using the Cypress method
P粉697408921
P粉697408921 2023-09-05 22:32:49
0
1
405
<p>When clicking the upload button, use the method below to open the file browser. As far as I know, no element is added to the DOM unless you explicitly attach it to the DOM element. </p> <pre class="brush:js;toolbar:false;">const inputEl = document.createElement("input"); inputEl.type = "file"; inputEl.multiple = true; inputEl.click(); inputEl.onchange = (e) => { ... } </pre> <p>Is it possible to select files using this method in Cypress? <code>selectFile</code> requires the <code>input</code> element to be in the DOM and the link to follow it. Otherwise I will have to use hidden input elements. </p>
P粉697408921
P粉697408921

reply all(1)
P粉832490510

solved. Can't do it in Cypress. I used an environment variable "DEVELOPMENT=1" to append the input element to the DOM, but only during testing.

const inputEl = document.createElement("input");
if (process.env.DEVELOPMENT) {
    document.getElementById("root").appendChild(inputEl);
}
inputEl.type = "file";
inputEl.multiple = true;
inputEl.click();
inputEl.onchange = (e) => { ... }

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!