Sharepoint2010 中任何列表上的“添加新项目”链接都会显示一个窗口/框架。我希望能够找到文本字段,写入它们并在窗口/框架中执行其他操作。目前我使用以下方法不成功:
BrowserInstance.SwitchTo().Frame(index) --- 耗尽所有索引。BrowserInstance.SwitchTo().Window() ---
HTML 看起来像:
<Div class=some class>
<Iframe frameborder=0 ..........>
</iframe></div>
Selenium Webdriver (c#) 识别 div (class= some class) 但不是 Iframe,不幸的是它保存了所有字段和按钮。
有什么想法吗?