You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use click+type instead of fill for Angular login form compatibility (#202)
page.fill() sets values programmatically but Angular reactive forms
require real keystroke events (keydown/keyup) to update their internal
model. After fill+submit, the form appeared submitted but credentials
were not recognized, leaving the browser on /login.
Switch to click() + fill('') + type(value, {delay: 20}) pattern which
generates real key events that Angular processes correctly.
0 commit comments