How to upload file using python selenium-webdriver when there is no input type but instead it has a button type in HTML?
I'm trying to upload a file to a webpage using Selenium but the HTML type is a button not an Input file.
Below is the HTML Code
Button looks like this
My code
browser.find_element_by_class_name("ng-scope").send_keys('C:\\Users\\Desktop\\test.png')
But after I run the code the file is not uploaded.
Please advise on where i'm going wrong?
Thanks in advance -M

