簡體   English   中英

testcafe 支持貼圖嗎?

[英]does testcafe support the pasting of images?

Testcafe 論壇Github 存儲庫都要求現在應將有關 Testcafe 的所有問題發布到 StackOverflow。

我有一些我想測試的功能,其中涉及從剪貼板粘貼圖像。 您可以通過打印屏幕並粘貼到 Github 注釋字段來快速測試它。 甚至 StackOverflow 在問題編輯器中也有一些粘貼功能。

那么我可以使用 Testcafe 粘貼圖像嗎? 我發現與此相關的唯一問題是https://github.com/DevExpress/testcafe/issues/2668 ,它詢問了從 2018 年開始模擬 ClipboardApi 的問題。這不完全是。

test('test paste', async t => {
  var image = "base64encodedImage?";
  await t
    .copyToClipboard(image)
    .focus('textarea')
    .pressKey('ctrl+v');
});

不,您不能使用 TestCafe 粘貼,因此無法粘貼圖像。

此功能已請求但尚未實現: https://github.com/DevExpress/testcafe/issues/2466

我嘗試了幾種不同的粘貼方式。

await t.typeText(rte.text, '', { paste: true });
await t.typeText(rte.text, 'v', { modifiers: { ctrl: true } });
await t.pressKey('ctrl+v');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM