-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for mac OS ventura and sonoma #32
base: master
Are you sure you want to change the base?
Conversation
For me, there's a password popup after focusing on The solution is to focus on another field, in my case the user field const passwordField = authArea.textFields[1]
passwordField.focused = true
passwordField.value = password
+ const userField = authArea.textFields[0]
+ userField.focused = true |
cool @esafirm. will add this changes. thanks |
Hai @tavvfiq, Mind to update the script with the latest mac os sonoma? :) |
@bilfash i havent update my os to sonoma yet😅. But will update the PR once its done |
hi @bilfash, just updated the PR with support for sonoma. please kindly help on testing ya. thanks! P.S: please delete existing VPN first, and then re-adding the VPN again (since this impl. is using different approach) |
this PR add support for mac OS ventura since the system settings is using different layout.
the implementation is using
osascript
withjavascript
. feel free if you have any input. thanks