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

Can I set the chrome browser’s language for C# XUnit?

Hi Richard,

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

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

You can get the list of language code here.