I am trying to work with a file. The file was uploaded to the Lambda Storage. When I try to access that file during my test I get the error: invalid argument: File not found : C:\Users\ltuser\Downloads\BuylistPricingErrorsDuplicates.csv
Hi Tim,
Please pass userfiles capability within LT Options like this:
string[] ar = { "BuylistPricingErrorsDuplicates.csv" };
Dictionary<string, object> ltOptions = new Dictionary<string, object>();
ltOptions.Add("lambda:userFiles", ar);
ChromeOptions capabilities = new ChromeOptions();
capabilities.AddAdditionalOption("LT:Options", ltOptions);