I have an SVG object with a few circle and rectangle elements. Using webdriver, I can click on the main svg object, but not any of the elements within it. The problem only s
Here is an example of a workaround in C#:
IWebElement svgElement = Driver.FindElement(By.CssSelector("svg")); IList rectElements = svgElement.FindElements(By.CssSelector("rect"));