how to click buttons python code example
Example 1: how to click on button using python
from selenium import webdriver
driver = webdriver.Firefox()
# Go to your page url
driver.get('your page url')
# Get button you are going to click by its id ( also you could us find_element_by_css_selector to get element by css selector)
button_element = driver.find_element_by_id('button id')
button_element.click()
Example 2: python button click code
w = Button ( master, option=value, ... )