TCA.clearNetworkFilters

Removes all URL request filters.

TCA.clearNetworkFilters();

Note: Only relevant for steps that have a network-related end event, or that do not have any end event.

Arguments

None

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
TCA.clearNetworkFilters().then(function(){
    TCA.done();
}).catch(function (error) {
    TCA.doneWithError(error);
});