First of all, what a great community. Thanks for your help, work and sharing it.
Now I hope there is help for my problem.
Unter Alfred V1 I was using a Applescript and it worked well.
The Script opens Firefox and did a login on a special website.
Now with V2 the script starts but opens 2 firefox windows.
Could anybody please help me and fix the script or build a workflow? Sorry.. I'm a complete newbie.
openFirefoxURL("https://specialwebsite.de/")
on openFirefoxURL(x)
return do shell script "open -a Firefox" & space & quoted form of x
end openFirefoxURL
tell application "System Events"
delay 4
tell application "Firefox"
activate
tell application "System Events" to keystroke "username"
tell application "System Events" to keystroke tab
tell application "System Events" to keystroke "password"
tell application "System Events" to keystroke return
end tell
beep
end tell
Thanks in advance for your help.