我在我的本地计算机上而不是在线上设置了var elementPresent = true;
try {
IWebElement spIcon = driver.FindElement(By.CssSelector("#gridview-1080-record-2658335 > td.x-grid-cell.x-grid-td.x-grid-cell-headerId-propertiesColInv.wrappable.icon-spacer.x-unselectable.wrappable.icon-spacer > div > i"));
}
catch (NoSuchElementException spIconNotDisplayed) {
elementPresent = false;
}
if (elementPresent) {
throw new ElementPresentException("The spIcon was found");
}
我有一个简介页面,其中介绍了其他选项卡显示的内容。
我想要的是在“班级概述”,“学生选择器”和“努力程度”选项卡上插入超链接,以便一旦用户单击em,他将被定向到相应的选项卡。
>“简介”页面设置如下:
shinydashboard