I am using selenium webdriver (firefox) to crawl some data from a website. I just found that opening the web page is slower than just opening the source of that web page. In other words, it took much longer to go to 'www.google.com'
than to go to 'view-source:www.google.com'
So I was wondering whether I can use webdriver to get all text from a source page, rather than a normal page.
I tried using driver.page_source for the source page but it returned some mess that I don't want.