My application is using Mathml editor and i want to record button from this editor. i am using Selenium IDE, But not able to record any action from this editor.
i am new for selenium please help me out.
This is what I've tried so far:
driver.switchTo().frame("editML");
WebElement editor = driver.findElement(By.className("#editML"));
JavascriptExecutor jsExecutor = (JavascriptExecutor) driver;
jsExecutor.executeScript("arguments[0].innerHTML = '<h1>Heading</h1>Hello World'", editor);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…