我正在尝试使用phantomJS自动化一个场景,在场景中有一个动态网格。我们必须手动填充网格中的数据。在填充网格之前,应显示一个空行。这个空行没有显示在phantomJS浏览器中,而行正在IE,Mozilla Firefox和谷歌浏览器中加载。下面是我正在使用的脚本,我尝试使用行中所有ID的元素,并试图等待它加载足够的时间。
PhantomJS版本 - 2.1.1 节点JS版本-0.12.13-x64.msi python版本-3.5.1 梦魇-1.8.2
.waitForVisible('#ID') //this is one element in the row. but the row is not being displayed simply it is throwing errors.
.type('#ID', "AAA-2121")
.pressTab('#ID')
.screenshot(resultfolder + '/06.sku-Details.png')
.pressTab('#ID')
.wait(3000)