Cypress:如何在视频中进入特定时间?

Cypress:如何在视频中进入特定时间?,cypress,Cypress,我是cypress和测试视频的新手,我想知道如何将滑块移动到特定时间。也就是说,我的视频是30秒长,所以我尝试了这个,但这个移动滑块到视频的中间。我做错了什么?谢谢 cy.document().then(doc => { const progressElement = doc.querySelector(".progress"); const oneSecondWidth = progressElement.offsetWidth / (durationS * 1); cy.l

我是cypress和测试视频的新手,我想知道如何将滑块移动到特定时间。也就是说,我的视频是30秒长,所以我尝试了这个,但这个移动滑块到视频的中间。我做错了什么?谢谢

cy.document().then(doc => {
  const progressElement = doc.querySelector(".progress");
  const oneSecondWidth = progressElement.offsetWidth / (durationS * 1);
  cy.log(progressElement.offsetWidth / (durationS * 1));
  cy.get(".progress").click(oneSecondWidth * 10, 0);
});

你能加上你的错误吗?没有错误。测试通过,但视频滑块移到了中间位置,而不是定义的oneSecondWidth。这是youtube视频,我想将滑块从开始移动到10秒。谢谢你的帮助和建议哦,那样的话,别客气