I am new to Selenium and wonder if someone could point me in the right direction.
I am trying to get the page source of a page, but I notice IE driver returns something
different than FirefoxDriver.
Also, the String returned by InternetExplorerDriver.getPageSource() is different than the one i see if i click view page source on IE.
I am running IE 8 and Firefox 22.
For sample on this page: http://stackoverflow.com/questions/16455217/webdriver-save-the-location-of-the-id-in-the-page
When I called getPageSource(), IE returned something like this.
"<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">
While Firefox returned this.
"<!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" />
Is there a way for IEDriver to return a pageSource in the same way as FirefoxDriver?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…