TA的每日心情 | 慵懒 2016-4-26 12:45 |
---|
签到天数: 3 天 连续签到: 2 天 [LV.2]测试排长
|
本帖最后由 小丫头amy 于 2016-6-11 19:09 编辑
用kindeditor的代码如下;
- public static void runSrcipt(String script){
- JavascriptExecutor js=(JavascriptExecutor)driver;
- js.executeScript(script);
- }
- runSrcipt("KE.html('summernote','<p>测试</p>');");
复制代码 但是一直报错,Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: KE is not defined
是什么问题?
还有什么其他的办法可以操作富文本吗?
html的代码如下:
- <div id="summernote" class=" edui-body-container" contenteditable="false" style="width: 480px; min-height: 240px; z-index: 999; position: absolute; left: -32768px; top: -32768px;">
- <textarea style="resize: none; border: 0px none; padding: 0px; margin: 0px; overflow-y: auto; outline: 0px none; width: 500px; height: 240px;"/>
复制代码
|
|