3

我正在使用量角器黄瓜框架为摩纳哥编辑器编写 BDD 测试。不久前,我发现了 Monaco API 以及如何以编程方式在编辑器中设置值。但这一次,我无法使用量角器在 monaco 编辑器中获取文本。这是我的代码示例:

browser.ignoreSynchronization = true;
        let driver = browser.driver;
        // iframe ids

       let iframeID = 'editorFrame';

       let editorSpanXpath = '//div[@id="editorContainer"]//div[contains(@class, "monaco- editor")]//div[contains(@class, "editor-scrollable")]'
      // switching to the iFrame to perform tasks inside it
        browser.switchTo().frame(iframeID);

    // clicking on a div inside the editor to ascertain that
    // the browser knows where to  run the script

        driver.findElement(by.xpath(editorSpanXPath)).click();
         browser.executeScript('this.monaco.editor.getModels()[0].getValue()').then(function(editorText){
               let replaceString = 'abracadbra' + editorText
               browser.executeScript('this.monaco.editor.getModels()[0].setValue("' + replaceString + '")');
        }
        );

这里的问题是“editorText”的值一直为空。在运行我的 BDD 测试时,编辑器中的值被替换为“abracadabranull”

使用一些默认文本初始化编辑器。而且由于“setValue”函数正在工作,我认为浏览器驱动程序在获取加载编辑器的 iFrame 时没有问题。

任何帮助,将不胜感激。

4

1 回答 1

2

最后,是一个简单的 return 语句拯救了这一天:

browser.ignoreSynchronization = true;
    let driver = browser.driver;
    // iframe ids

   let iframeID = 'editorFrame';

   let editorSpanXpath = '//div[@id="editorContainer"]//div[contains(@class, "monaco- editor")]//div[contains(@class, "editor-scrollable")]'
  // switching to the iFrame to perform tasks inside it
    browser.switchTo().frame(iframeID);

// clicking on a div inside the editor to ascertain that
// the browser knows where to  run the script

    driver.findElement(by.xpath(editorSpanXPath)).click();
     browser.executeScript('return this.monaco.editor.getModels()[0].getValue()').then(function(editorText){
           let replaceString = 'abracadbra' + editorText
           browser.executeScript(' return this.monaco.editor.getModels()[0].setValue("' + replaceString + '")');
    }
    );

非常感谢这个答案为我指明了正确的方向。

于 2016-12-12T11:45:25.347 回答