c# 4.0 – Select an Option from the Right-Click Menu in Selenium Webdriver – c#

I am using Selenium webdriver. I am not able to select (say 2nd) option from the Options opened on right click.

In my current code I am able to right click on webElement but could not select an Option from the list that is opened after right click.

Actions oAction = new Actions(driver);
oAction.ContextClick().SendKeys(OpenQA.Selenium.Keys.ArrowDown).SendKeys(OpenQA.Selenium.Keys.ArrowDown).SendKeys(OpenQA.Selenium.Keys.ArrowDown).SendKeys(OpenQA.Selenium.Keys.ArrowDown).SendKeys(OpenQA.Selenium.Keys.Return).Build().Perform();

Can anyone help me to select Print Option from the list.
enter image description here

Read more here: Source link