Answers for "next buton using selenium"

1

next buton using selenium

while True:
    elm = driver.find_element_by_class_name('next')
    if 'inactive' in elm.get_attribute('class'):
        break;
    elm.click()
Posted by: Guest on July-05-2021

Browse Popular Code Answers by Language