Hello,
I´m trying to click a link in web page using this comand
element = driver.findElement(By.Id("IDName")).Click();
But visual studio throw me the followwing error
'OpenQA.Selenium.IWebDriver' does not contain a definition for 'findElement' and no extension method 'findElement' accepting a first argument of type
So i don´t know if I'm doing the right thing here.
The link I'm trying to click is within several frames.
So not sure if this is a problem.
I need access the frames before simulate the click?
How do I do that?
Thanks in advice!