Cannot find a field for the record plone.app.tiles when I run robotframework

I'm getting the following error when I run robotframework.

16:26:40 [ wait ] Starting Zope 2 server
/home/ubuntu/buildout-cache/eggs/zope.configuration-4.1.0-py2.7.egg/zope/configuration/fields.py:160: UserWarning: You did not specify an i18n translation domain for the 'title' field in /home/ubuntu/workspace/src/mypackage.pkg/src/mypackage/pkg/tiles/configure.zcml
  "'%s' field in %s" % (self.getName(), context.info.file )
Traceback (most recent call last):
  File "bin/robot-server", line 360, in <module>
    sys.exit(plone.app.robotframework.server.server())
  File "/home/ubuntu/buildout-cache/eggs/plone.app.robotframework-1.1.3-py2.7.egg/plone/app/robotframework/server.py", line 183, in server
    start(args.layer)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.robotframework-1.1.3-py2.7.egg/plone/app/robotframework/server.py", line 42, in start
    zsl.start_zope_server(zope_layer_dotted_name)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.robotframework-1.1.3-py2.7.egg/plone/app/robotframework/server.py", line 236, in start_zope_server
    setup_layer(new_layer)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.robotframework-1.1.3-py2.7.egg/plone/app/robotframework/server.py", line 311, in setup_layer
    setup_layer(base, setup_layers)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.robotframework-1.1.3-py2.7.egg/plone/app/robotframework/server.py", line 320, in setup_layer
    layer.setUp()
  File "/home/ubuntu/buildout-cache/eggs/plone.app.testing-5.0.8-py2.7.egg/plone/app/testing/helpers.py", line 375, in setUp
    self.setUpPloneSite(portal)
  File "/home/ubuntu/workspace/src/mypackage.pkg/src/mypackage/pkg/testing.py", line 24, in setUpPloneSite
    applyProfile(portal, 'mypackage.pkg:default')
  File "/home/ubuntu/buildout-cache/eggs/plone.app.testing-5.0.8-py2.7.egg/plone/app/testing/helpers.py", line 140, in applyProfile
    blacklisted_steps=blacklisted_steps)
  File "/home/ubuntu/buildout-cache/eggs/Products.GenericSetup-1.8.8-py2.7.egg/Products/GenericSetup/tool.py", line 388, in runAllImportStepsFromProfile
    dependency_strategy=dependency_strategy)
  File "/home/ubuntu/buildout-cache/eggs/Products.GenericSetup-1.8.8-py2.7.egg/Products/GenericSetup/tool.py", line 1433, in _runImportStepsFromContext
    message = self._doRunImportStep(step, context)
  File "/home/ubuntu/buildout-cache/eggs/Products.GenericSetup-1.8.8-py2.7.egg/Products/GenericSetup/tool.py", line 1245, in _doRunImportStep
    return handler(context)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.registry-1.7-py2.7.egg/plone/app/registry/exportimport/handler.py", line 79, in importRegistry
    importer.importDocument(body)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.registry-1.7-py2.7.egg/plone/app/registry/exportimport/handler.py", line 125, in importDocument
    self.importRecord(node)
  File "/home/ubuntu/buildout-cache/eggs/plone.app.registry-1.7-py2.7.egg/plone/app/registry/exportimport/handler.py", line 273, in importRecord
    name
ValueError: Cannot find a field for the record plone.app.tiles. Add a <field /> element or reference an interface and field name.

I found something related to this error https://github.com/collective/collective.nitf/issues/127, but I am not sure of how to resolve it.

obviously the default profile from plone.app.tiles is not loaded ... you should add plone.app.tiles to your package dependencies and make shure the profile-plone.app.tiles:default is loaded in the tests.

@petschki, tried that and it didn't work, hence the reason why I am asking.

are you sure it's explicitly loaded in your testing.py?

I'll double check.