seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_platform_orders_tool_grid_jump_links_prefix_should_appear_before_first_action(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin/platform-orders'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links"[\s\S]*?po-tools-grid-jump-links-prefix[\s\S]*?快速定位:[\s\S]*?po-tools-jump-summary/u', $html); } }