automation - How to create a program that automatically presses buttons on a webpage -


i need create program allow me automate of work. required press buttons on webpage depending on whether or not criteria met (the criteria keywords).

pyautogui module in python can used simulating mouse movements , clicks. here example move coordinate (100,100) , click

import pyautogui pyautogui.moveto(100, 100) pyautogui.click() 

it surprisingly easy. can read automate boring stuff python


Comments

Popular posts from this blog

html - How to custom Bootstrap grid height? -

javascript - pass values from mssql to views in node -

javascript - Understanding ExtJS Framework Syntax -