i have 10 it blocks , after executing the 6th it block its redirecting to different page automatically ?However in the UI it has multiple tabs
/* it('Clicking on the AGO-B7-Mass Balance tab and Capturing the Start Stock/Inflows/Outflows/End Stock',()=>{
//Clicking on the AGO-B7-Mass Balance tab
cy.get('section').find('div').find('section').find('div').find('h4:nth-child(3)').each(($e1,index,$list)=>{
// var res=$e1.text()
//console.log('resresresresres',res)
// console.log('resresresresres',AGOB7BMSIOE[index])
expect(Cypress.$($e1).text()).to.eq(AGOB7BMSIOE[index])
}) })
it('clicking show more',()=>{
//clicking show more
cy.get('main').find('div').find('section').find('button').find('svg').click()
})
it('Capturing the Purchases(L15) and Sales Taxed(L15)',()=>{
// Capturing the Purchases(L15) and Sales Taxed(L15)
cy.get('section').find('div').find('section').find('div').find('section').find('span:nth-child(2)').each(($e1,index,$list)=>{
// var res=$e1.text()
//console.log('******',res)
expect(Cypress.$($e1).text()).to.eq(AGOB7BMPSST[index])
})})
it('Capturing the Product Transfer(L15) and Sales UnTaxed(L15)',()=>{
// Capturing the Product Transfer(L15) and Sales UnTaxed(L15)
cy.get('section').find('div').find('section').find('div').find('section').find('span:nth-child(4)').each(($e1,index,$list)=>{
// var res=$e1.text()
//console.log('******',res)
expect(Cypress.$($e1).text()).to.eq(AGOB7BMPTSU[index])
}) })
it('Capturing the Gain(L15)',()=>{
// Capturing the Gain(L15)
cy.get('section').find('div').find('section').find('div').find('section').find('span:nth-child(6)').each(($e1,index,$list)=>{
// var res=$e1.text()
//console.log('******',res)
expect(Cypress.$($e1).text()).to.eq(AGOB7Massbalance_Secondconverted2)
})
})*/