Wk-notes-11-12-safari-remote-debug
PreviousWk-notes-11-13-i18nNextWk-notes-11-11-migrating-typescript-git-remote-label-Emotion-controlled-component
Last updated
Was this helpful?
Last updated
Was this helpful?
I. Inspecting iOS safari with Mac safari
iOS -> Setting -> Safari -> Advanced -> Web inspector
cable connect
find Mac's ip (ifconfig), and connect to
Open Mac Safari -> development console -> select device and
Ref :
II. Use Xcode to simulate iPhone
III. ngrock
establish a ssh tunnel from a localhost port to a remote url
ngrok http --host-header=rewrite 8080
focus management, tabbable element selector, using querySelector
to get tabbale el and do tricks on them
!! how to trigger iOS keyboard, add absolute fake <input>
with click
event, do fakeInputEL.addEventListener('click',(e) => {wrapperEl.append(popupEl);nextInput.focus();});