Jira Code: VG
Clear cart function, not implemented in default SCA. The following code can be used to clear all items added into the cart page on a single click.
$('.clear-cart').click(function(){
$('.cart-item-actions-item-list-actionable-edit-content-remove').click();
});
});