Tried following, but none of them working :
driver.find_element_by_xpath("//span[@id='dijit_form_Button_11_label']").click()
driver.find_element_by_id("dijit_form_Button_11_label").click()
driver.find_element_by_xpath("//span[@id='dijit_form_Button*' and contains(text(),'Add')]").click()
driver.find_element_by_xpath("//span[@class='dijitReset dijitInline dijitIcon addIcon' and text()='Add']").click()
driver.find_element_by_xpath("//span[text()='Add']").click()
driver.find_element_by_xpath("//span[@id='dijit_form_Button*'/@class='dijitReset dijitInline dijitIcon addIcon'/@class='dijitReset dijitToggleButtonIconChar'/@id='dijit_form_Button*' and text() = 'Add']").click()
driver.find_element_by_xpath("//span[@class='*label' and text() = 'Add']").click()
driver.find_element_by_css_selector("#dijit_form_Button*label").click()
driver.find_element_by_xpath("//span[@id='dijit_form_Button*' and contains(text(),'Add')]").click()
driver.find_element_by_xpath("//span[@class='dijit*' and text() = 'Add']").click()
wait.until(EC.visibility_of_element_located((By.XPATH, "//div[2]/div/div/div/div[2]/div/table/tbody/tr/td/div/span[2]/span/span/span[3]")))
driver.find_element_by_xpath("//div[2]/div/div/div/div[2]/div/table/tbody/tr/td/div/span[2]/span/span/span[3]").click()
driver.find_element_by_xpath("//span[@class='dijitReset dijitInline dijitIcon addIcon' and text() = 'Add']").click()
driver.find_element_by_xpath("//span[contains(*,'Add')]").click()
driver.find_element_by_xpath("//button[contains(text(),'Add')]").click()
driver.find_element_by_xpath("//span[contains(text(),'Add')]").click()
driver.find_element_by_xpath("//span[contains(*,'Add')]").click()
driver.find_element_by_xpath("//div[2]/div/div/div/div[2]/div/table/tbody/tr/td/div/span[2]/span/span/span[3]").click()
driver.find_element_by_xpath("//div[contains(.,'Add')]").click()
driver.find_element_by_xpath("//span[contains(.,'Add')]").click()
driver.find_element_by_xpath("//*[contains(text(), 'Add')]").click()
driver.find_element_by_xpath("//button[contains(text(),'Add')]").click()
driver.find_element_by_xpath("//label[contains(text(),'Add')]").click()
driver.find_element_by_xpath("//span[contains(@class,'Add')])").click()