• <bdo id='AjAt9'></bdo><ul id='AjAt9'></ul>

    <small id='AjAt9'></small><noframes id='AjAt9'>

    <tfoot id='AjAt9'></tfoot>
      <legend id='AjAt9'><style id='AjAt9'><dir id='AjAt9'><q id='AjAt9'></q></dir></style></legend>

    1. <i id='AjAt9'><tr id='AjAt9'><dt id='AjAt9'><q id='AjAt9'><span id='AjAt9'><b id='AjAt9'><form id='AjAt9'><ins id='AjAt9'></ins><ul id='AjAt9'></ul><sub id='AjAt9'></sub></form><legend id='AjAt9'></legend><bdo id='AjAt9'><pre id='AjAt9'><center id='AjAt9'></center></pre></bdo></b><th id='AjAt9'></th></span></q></dt></tr></i><div id='AjAt9'><tfoot id='AjAt9'></tfoot><dl id='AjAt9'><fieldset id='AjAt9'></fieldset></dl></div>

        断言文件下载的 Testcafe 示例

        时间:2023-09-06
      1. <i id='u7B2w'><tr id='u7B2w'><dt id='u7B2w'><q id='u7B2w'><span id='u7B2w'><b id='u7B2w'><form id='u7B2w'><ins id='u7B2w'></ins><ul id='u7B2w'></ul><sub id='u7B2w'></sub></form><legend id='u7B2w'></legend><bdo id='u7B2w'><pre id='u7B2w'><center id='u7B2w'></center></pre></bdo></b><th id='u7B2w'></th></span></q></dt></tr></i><div id='u7B2w'><tfoot id='u7B2w'></tfoot><dl id='u7B2w'><fieldset id='u7B2w'></fieldset></dl></div>
          <tbody id='u7B2w'></tbody>

        • <bdo id='u7B2w'></bdo><ul id='u7B2w'></ul>
          <legend id='u7B2w'><style id='u7B2w'><dir id='u7B2w'><q id='u7B2w'></q></dir></style></legend><tfoot id='u7B2w'></tfoot>

                <small id='u7B2w'></small><noframes id='u7B2w'>

                1. 本文介绍了断言文件下载的 Testcafe 示例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想编写一个夹具来模拟导出文件并确保从浏览器操作中下载文件.有什么例子吗?

                  I want to write a fixture to simulate the export file and make sure a file is downloaded from browser actions. any example?

                  不适用

                  推荐答案

                  没有花哨的方法检查下载是否完成,TestCafe 在浏览器中控制下载能力的能力有些局限.

                  There's not a fancy way check if the download has finished, TestCafe is somewhat limited in its ability to control the download ability in the browser.

                  import fs from 'fs';
                  
                  const fileName = 'junk.txt';
                  const downloadLocation = 'C:\Wherever\Downloads\';
                  const fileDLUrlBase = 'https://example.com/downloads/';
                  fixture('download test fixture');
                  test('download test', async t => {
                    await t.navigateTo(fileDLUrlBase + fileName);
                    await t.wait(30000);
                    // Wait 30 seconds
                    await t.expect(fs.fileExistsSync(downloadLocation + fileName));
                  });
                  

                  如果需要,您可以将其转换为一个循环,例如每 5 秒检查 60 秒.

                  You could convert that to a loop that checks, say, every 5 seconds for 60 seconds, if you wanted.

                  这篇关于断言文件下载的 Testcafe 示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:量角器,我什么时候应该在 click() 之后使用 the 下一篇:使用 Puppeteer 检测和测试 Chrome 扩展程序

                  相关文章

                  最新文章

                2. <legend id='J9ejM'><style id='J9ejM'><dir id='J9ejM'><q id='J9ejM'></q></dir></style></legend>
                3. <small id='J9ejM'></small><noframes id='J9ejM'>

                  <i id='J9ejM'><tr id='J9ejM'><dt id='J9ejM'><q id='J9ejM'><span id='J9ejM'><b id='J9ejM'><form id='J9ejM'><ins id='J9ejM'></ins><ul id='J9ejM'></ul><sub id='J9ejM'></sub></form><legend id='J9ejM'></legend><bdo id='J9ejM'><pre id='J9ejM'><center id='J9ejM'></center></pre></bdo></b><th id='J9ejM'></th></span></q></dt></tr></i><div id='J9ejM'><tfoot id='J9ejM'></tfoot><dl id='J9ejM'><fieldset id='J9ejM'></fieldset></dl></div>
                  1. <tfoot id='J9ejM'></tfoot>

                        <bdo id='J9ejM'></bdo><ul id='J9ejM'></ul>