adorable-smartphone-87280
10/28/2022, 5:58 PMfunction getTargetMonth(div) {
cy.then(() => {
if (div > 0) {
cy.get('.fc-prev-button').click()
div - 1;
} else if (div < 0) {
cy.get('.fc-next-button').click()
div + 1;
}
else return
})
getTargetMonth(div)
}