I'm struggling to figure a way to click the submit button in the following class. It does not contain an ID, name, or any easily identifiable method that is not dynamically generated. any help is appreciated.
so far i have tried:
driver.find_element_by_xpath("//div[@class='button-status-container'][@type='submit']")
driver.find_element_by_xpath("//div[@class='button-status-container']//button-status-container[@type='submit']")
driver.find_element_by_css_selector('.button-status-container[type="button"]')
all of the above errors out with NoSuchElementException
.
the htlm of submit button