How can I pass Chrome options in Ruby-Test Unit?

Can you please tell me how to pass Chrome options?

Hello Macy,

In case of Ruby, you can pass Chrome options as shown below:

caps = Selenium::WebDriver::Remote::Capabilities.chrome
caps["chromeOptions"] = {}
caps["chromeOptions"]["args"] = ["incognito"]