我目前的情况是,在ace内容/命令提示符下输入一些文本并点击“Enter”键,这将创建一个单元格。 以下是我正在执行的代码,但它无法正常工作
casper.then(function(){
this.sendKeys(".ace_content", "a<-12; print a");
this.sendKeys(".ace_content", {keepFocus: true});
this.capture("test37_2.png");
this.page.sendEvent("keypress", casper.page.event.key.Enter);
this.capture("test37_3.png");
});
casper.wait(3000);
casper.then(function(){
this.test.assertExists({type:'xpath', path:".//*[@id='part1.R']/div[3]/div[1]/div[1]/pre/code"});
});