Je suis novice en matière de Selenium et je me demande si quelqu'un pourrait m'orienter dans la bonne direction.
J'essaie d'obtenir la source d'une page, mais je remarque que le pilote d'IE renvoie quelque chose comme différent de celui de FirefoxDriver.
De plus, la chaîne renvoyée par InternetExplorerDriver.getPageSource() est différente de celle que je vois si je clique sur view page source sur IE.
J'utilise IE 8 et Firefox 22.
Pour l'exemple de cette page : http://stackoverflow.com/questions/16455217/webdriver-save-the-location-of-the-id-in-the-page
Lorsque j'ai appelé getPageSource(), IE a renvoyé quelque chose comme ceci.
"<HTML><HEAD><TITLE>selenium - Webdriver / Save the location of the ID in the page - Stack Overflow</TITLE><LINK rel="shortcut icon" href="https://cdn.sstatic.net/stackoverflow/img/favicon.ico"><LINK rel="apple-touch-icon image_src" href="https://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png">
Alors que Firefox renvoie ceci.
"<!DOCTYPE html>
<title>selenium - Webdriver / Save the location of the ID in the page - Stack Overflow</title>
<link href="https://cdn.sstatic.net/stackoverflow/img/favicon.ico" rel="shortcut icon" />
<link href="https://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png" rel="apple-touch-icon image_src" />
Existe-t-il un moyen pour IEDriver de retourner une pageSource de la même manière que FirefoxDriver ?