from splinter import Browser
from splinter.exceptions import ElementDoesNotExist
from selenium import webdriver
from selenium.common.exceptions import WebDriverException
browser.find_by_tag('body').text
browser.visit(str('http://ariismits.com/contact-us'))
a = browser.find_by_tag('body').text
print a
just returns the menus...
"u'HOME | PHILOSOPHY | PORTFOLIO | WHAT WE DO | BLOG | CONTACT\nMap data \xa92017 Google\nTerms of Use\nReport a map error\nMap\nSatellite\n\n\n\n\n\n\nAriiSmits'u'HOME | PHILOSOPHY | PORTFOLIO | WHAT WE DO | BLOG | CONTACT\nMap data \xa92017 Google\nTerms of Use\nReport a map error\nMap\nSatellite\n\n\n\n\n\n\nAriiSmits'"
... but when I visit the page, I can see phone numbers, email addresses, etc
Why isn't that included in the response please?