I want to make Mozilla to run as soon as my pc is on. when Mozilla is open it must be redirected to my internet service provider site and must click on a specific field in that site to enable my login. I am using Ubuntu 12.04. Is this kind of automation possible?
Asked
Active
Viewed 1,195 times
2 Answers
1
Upstart
might do your job. Create a file $HOME/.config/upstart/firefox-with-yoururl.conf
with following content:
start on desktop-start
stop on desktop-end
exec firefox <url>
Reference : http://ifdeflinux.blogspot.in/2013/04/upstart-user-sessions-in-ubuntu-raring.html

Rahul
- 13,589
0
Assuming you know how to start a browser - I'd use Greasemonkey, it can be used to pressing buttons, clicking links and whatsoever the browser can do.
For Chrome there is a Tampermonkey - for the same purpose.

Putnik
- 886
xdotool
to simluate keyboard and mouse actions. – meuh Jun 27 '16 at 15:52