我创建了一个json-object并想将其写入一个json-file,但是该对象始终为空(?)
new WebDriverWait(driver, TimeSpan.FromSeconds(20)).Until(ExpectedConditions.ElementToBeClickable(By.XPath("//div[@class='ms-rtestate-write ms-rteflags-0 ms-rtestate-field' and starts-with(@id,'Tasrit_')][contains(@aria-labelledby,'_inplacerte_label')]/p"))).SendKeys("foo");
写入文件的内容现在为fs.writeFileSync(__dirname + '/myNewFile.json', JSON.stringify(myObjects));
[]
文件内容现在为fs.writeFileSync(__dirname + '/myNewFile.json', JSON.stringify({bla: myObjects}));
我仔细检查了{"bla":[]}
,它不是空的。它是其中包含一些对象的数组。
那是为什么?我在做什么错了?
编辑:
这是myObjects
的内容:
myObjects