Add Luxinnovation events application-form domain skill#451
Open
aman2k4 wants to merge 1 commit into
Open
Conversation
Captures the synthetic-event value-drop trap (use Input.insertText + verify by reload), per-section Save, searchable/enum dropdown handling, hidden file inputs, conditional fields, and the stable draft-submission reattach URL. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
✅ Skill review passedReviewed 1 file(s) — no findings. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Learned while filling a Fit 4 Start application on events.luxinnovation.lu.
The non-obvious trap: setting field values with the React-style synthetic pattern (
...value.set+ dispatch input/change) makes fields look filled but the framework drops them on Save — sections reload empty. The fix is compositor-level typing viaInput.insertTextplus verifying persistence by reload, not by reading the just-written DOM.Also documents: per-section Save + nav warning triangles, searchable vs enum custom dropdowns (coordinate-click the rendered option), hidden
input[type=file]upload viaDOM.setFileInputFiles, conditional fields that appear after radio/count choices, and the stable draft-submission reattach URL.🤖 Generated with Claude Code
Summary by cubic
Adds a new domain skill documenting how to reliably fill application forms on events.luxinnovation.lu. Covers the synthetic-event value-drop trap and shows how to type via CDP, plus key behaviors for saves, dropdowns, uploads, and draft recovery.
Input.insertTextinstead of synthetic value setters, and verifying by reload.DOM.setFileInputFilesand waiting for completion messages.Written for commit 07694a1. Summary will update on new commits.