How to perform end-to-end testing with TestCafe using LambdaTest?

How to perform end-to-end testing with TestCafe using LambdaTest?

Hello Joe- elmoufak,

To capture network logs in HAR format you just need to Add the capability network.har as “True” alongwith network"true" capability as given below:

$capability = array(
        "browserName" => "Chrome",
        "browserVersion" => "15.0",
        "LT:Options" => array(
                "username" => "LT_USERNAME",
                "accessKey" => "LT_ACCESS_KEY",
                "platformName" => "MacOS Monterey",
                "network" => true,
                "network.har" => true,
                "project" => "Untitled"
        )
);