I want to import an organizational logo using Selenium with Python.
I have to click on a link that will open up your file explorer and then I want to be able to find the image using Selenium.
This is what I have so far assuming that I have already made it to the website successfully.
input = driver.find_element(
By.ID,
"linkConfigurelogo").click()
input.driver.find_element(
By.ID, "OrganizationLogo").send_keys(
"C://filepath//Documents//image.jpg")