Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
346 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 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...