assertSee('Livewire Material') ->assertNoJavaScriptErrors(); }); it('moves between sections through the rail and the next-section link, keeping the rail', function () { $page = visit('/material')->waitForEvent('networkidle') ->assertScript("document.readyState === 'complete' && typeof window.Alpine !== 'undefined' && typeof window.Livewire !== 'undefined'"); $page->click('[data-navigation-rail-panel] a[href$="/material/buttons"]') ->assertSee('Variants') ->assertScript("document.querySelector('[data-navigation-rail-panel] [aria-current=\"page\"]').getAttribute('href').endsWith('/material/buttons')") ->assertScript("document.title === 'Buttons ยท Livewire Material'"); $page->click('[data-test="next-section"]') ->assertScript("location.pathname.endsWith('/material/menus')") ->assertNoJavaScriptErrors(); });