How to set language in Appium with Ruby framework?

How to set language in Appium with Ruby framework ?

Hi Toby-steed,

You can Language / Locale capabilities on your script or you can use our desired capability generator for the same:

capability = {
        "platformName" => "ios",
        "deviceName" => "iPad Air (2020)",
        "platformVersion" => "14",
        "language" => "fi",
        "locale" => "fi",
        "isRealMobile" => true
}