print window单击柏树中的打印按钮时,如何关闭打开的窗口。我正在调用一个js函数来关闭窗口并且它没有执行关闭,有人可以就如何解决问题提出建议吗?
context('Print button tests', () => {
it.only('Verify the display of Print and close the window', () => {
cy.get('.timetable-filter-panel-button.btn.btn-primary > span')
.contains("Print current view")
.click();
printClose();
})
})
//关闭打开窗口的Javascript函数:
function printClose(){
window.close();
}
慕勒3428872
相关分类