无法识别页面中的元素。它给出null。我想识别Iframe(文本框)中的元素。我使用selenium webdriver点击元素,但它无法识别元素
1) 我的 HTML 代码如下所示
<html>
<head>
<body>
<iframe id="iframeOne">
</iframe>
</body>
</head>
</html>
2.我使用javascript来识别像document.getElementById('textbox')这样的文本框。
但它返回null。
3.我什至尝试使用 selenium webdriver
IWebElement ClickElement = Wait.Until((d) => webDriver.FindElement(By.Id(parameter1))); It gives object reference error
ClickElement.Click();