Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
518 views
in Technique[技术] by (71.8m points)

testing - TestCafe: Changing download location

I am trying to change the download location and I found these codes doing research (sorry I forgot where I got these)

const browserConnection = t.testRun.browserConnection;
    const client = browserConnection.provider.plugin.openedBrowsers[browserConnection.id].client;
    const { Network, Page } = client;
    const downloadDirectory = '../my_downloads');

    await Promise.all([
      Network.enable(),
      Page.enable()
    ]);

    Network.requestWillBeSent((param) => {
      // console.log("Network.requestWillBeSent: " + JSON.stringify(param));
    });

    Network.responseReceived((param) => {
      // console.log("Network.responseReceived: " + JSON.stringify(param));
    });

    await Page.setDownloadBehavior({
      behavior: 'allow',
      downloadPath: downloadDirectory
    });

It was working perfectly fine using version 10.9.2 and this version was installed globally. I updated my TestCafe to 1.10.1 locally installed and now got this error:

TypeError: Cannot destructure property 'Network' of 'client' as it is undefined.

Any inputs are well appreciated. And looking forward to it :)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This internal API has changed due to testing support of multiple windows. Please use the getActiveClient method:

const browserConnection = t.testRun.browserConnection;
const runtimeInfo       = rowserConnection.provider.plugin.openedBrowsers[browserConnection.id];
const { Network, Page } = await runtimeInfo.browserClient.getActiveClient();

If you need to change the download location to read and check a file from it, please use a public API for this: example.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...