i'm new in selenium developing and i need to "scrape" this page:
https://annunci.ebay.it/pubblica-annuncio
in this page there is an images upload using jquery. i need to do the same using selenium in java. can someone give me some suggests? thanks!! :)
This is what i try:
WebDriver d = new FirefoxDriver();
d.get("https://annunci.ebay.it/pubblica-annuncio");
List<WebElement> elements = d.findElements(By.tagName("input"));
for(WebElement e : elements){
System.out.println(e.getAttribute("name"));
}