constBASE_URL=`http://localhost:${process.env.PORT||8000}`;describe('Homepage',()=>{beforeAll(async()=>{jest.setTimeout(1000000);});it('topmenu should have footer',async()=>{constparams='/form/basic-form?navTheme=light&layout=topmenu';awaitpage.goto(`${BASE_URL}${params}`);awaitpage.waitForSelector('footer',{timeout:2000,});consthaveFooter=awaitpage.evaluate(()=>document.getElementsByTagName('footer').length>0);expect(haveFooter).toBeTruthy();});});