driver.getEditable(), editable);
if (driver.getEditable()) {
Xmleditor editor = driver.getXmleditor();
assertEquals("Check " + driverName + " editor " + editorName,
editor.getName(), editorName.trim());
XmlPopups editorPopups = editor.getXmlPopups();
if (editorPopups == null) {
assertTrue("Check " + driverName + " no popup",
popups.isEmpty());
} else {
XmlPopup[] editorPopupArray = editorPopups.getXmlPopupArray();
log.info("Driver has " + editorPopupArray.length + " popups");
assertEquals("Check " + driverName + " popups",
editorPopupArray.length, popups.size());
if (!popups.isEmpty()) {
for (XmlPopup editorPopup : editorPopupArray) {