how to get attribute value in selenium python code example
Example: get attribute in selenium python
org = driver.find_element_by_xpath('//a[@class="cbtn--s"]')
val = org.get_attribute("href")
org = driver.find_element_by_xpath('//a[@class="cbtn--s"]')
val = org.get_attribute("href")