I want to click on the Element. I have following js code that does that trick:
$('#targetparam13 dd span.value')[2].click()
This is the code I am trying to get the same action using c# webdriver:
WDriver.FindElement(By.XPath("//*[@id=\"targetparam13\"]/dd/ul/li[3]/a/span")).Click();
How to achieve that?