How to set Chrome's language for C# MSTest?

Can I set chrome’s language for MSTest?

Hi Ana,

You can add the syntax below to set language in Chrome:

var chromeOptions = new ChromeOptions();
chromeOptions.AddArgument("--lang=en-AU");

You can get the list of language code here.