Accessing as portal owner
-------------------------

  >>> from Products.Five.testbrowser import Browser
  >>> from Testing.ZopeTestCase import user_password
  >>> browser = Browser()
  >>> browser.addHeader('Authorization',
  ...                   'Basic %s:%s' % ('portal_owner', user_password))

Configure Providers
-------------------

Access portal home and look out for Simples Consultoria in the contents::

  >>> browser.open('%s' % self.portal.absolute_url())
  >>> 'Simples Consultoria' in browser.contents
  True