I'm trying to get familiar with selenium. I decided to try to work with facebook, and fulfill my profile with selenium, But they use too much Ajax.
It's not very complicated to fulfill my hometown and so on, but I don't really know how to upload an image. They have an Ajax form to choose between upload and webcam photo. And then I need to handle somehow an upload dialog... any ideas?
-
can you give us an example on how the site looks like ? this will help us to figure out what a solutionchuan– chuan2014年01月29日 17:00:35 +00:00Commented Jan 29, 2014 at 17:00
-
possible duplicate of How can I work with file uploads during a Webdriver test?Yamikuronue– Yamikuronue2015年04月29日 16:36:07 +00:00Commented Apr 29, 2015 at 16:36
1 Answer 1
You should be able to use the solutions outlined in this similar question on StackOverflow:
driver = webdriver.Firefox()
element = driver.find_element_by_id("fileUpload")
element.send_keys("myfile.txt")
This should allow you to interact with the file upload without automating the dialog box.
If you do need to interact with the dialog box, you'll need to use another library, as the dialog box is a Windows component and Selenium does not understand how to interact with Windows components, only with web pages.