The program using Selenium
from selenium import webdriver
browser = webdriver.Firefox()
url = 'any_url'
browser.get(url)
browser.find_element_by_id('empty_cart_btn').click()
creates the following dialog box:

What is the code in the Selenium to automatically Press OK?