Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 :)


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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...