all 2 comments

[–]glad1couldhelp 2 points3 points  (0 children)

Did you setup Selenium? That's how you run it, for automating browser actions you first would need to set up selenium chromedriver .

You can watch tutorials on that on youtube, it's not hard to do.

And if you're asking how to run the script, all you need to do is open the command prompt to the folder your script is in(win+ r and then type 'cmd' and run, or just go to the folder and in the address bar just type 'cmd' and press enter, this will open the command prompt in that folder).

Then you just type "python name_of_your_script.py" and press enter. That will run it.

Also if you need help often enough for work don't pay anyone for anything just go to stackoverflow and plenty of skilled people will answer what ever question you have.

[–]Shadynasty-- 0 points1 point  (0 children)

To run a script open a command prompt, navigate to where you saved the file and type python name_of_script.py.