livewire(ProfileSetup::class)
->fillForm([
'field_name' => 'field_value',
'second_field_name' => [
'child_field' => null,
'child_field' => 'some_value',
],
])
->call('') // here I want to call form wizard next and previous step action button
->assertHasNoFormErrors()
livewire(ProfileSetup::class)
->fillForm([
'field_name' => 'field_value',
'second_field_name' => [
'child_field' => null,
'child_field' => 'some_value',
],
])
->call('') // here I want to call form wizard next and previous step action button
->assertHasNoFormErrors()