我想在jest-playwright测试中使用正确的日期格式。
我正在使用:
const currentdate = new Date().toLocaleDateString("de-DE", {
day: "2-digit",
month: "2-digit",
year: "numeric",
});
console.log(currentdate);
这段代码在我的firefox和chrome浏览器中返回了正确的格式,例如17.09.2021
。但是在playwright with chrome中,它返回了2021-09-17
。这是一个bug吗?或者我如何在我的playwright测试中获得正确的德语日期格式?
1条答案
按热度按时间7gcisfzg1#
页面重新加载出现问题。
我在错误的页面上嘲笑它,在我去了另一个网址后,日期被覆盖了。