自己现学现做的非常简易的查询法国申根签的脚本
注意,仅适用于可用 AppleScript的 Mac 电脑
可以更改为自己的信息并复制到Apple Script中,然后再导出为 App 即可
tell application "Safari"
	activate
end tell
tell application "System Events"
	tell process "Safari"
		open location "https://www.vfsvisaonline.com/Global-Passporttracking/Track?q=shSA0YnE4pLF9Xzwon/x/BGxVUxGuaZP3eMAtGHiEL0lt+H3PMtnNdGHJqG4nJ+a7HwVXy0q89AOq2LKvMJAu4hFOeTenfyWNXUPA5f4OnpxKAj3BRTAB54KBglNGVD0"
		# This URL can be replaced with another website so that you can check the progress of your visa for other countries.
        # THIS CHANGE MAY CAUSE THE SCRIPT TO BE UNAVAILABLE !!!
        
		delay 5
		key code 48
		keystroke "REFERENCE_NUMBER(FUXX/XX/1234/12)"
		key code 48
		key code 48
		keystroke "YOUR_BIRTHDAY(DD/MM/YYYY)"
	end tell
end tell
 
         
      
评论区