diff --git a/op_robot_tests/tests_files/initial_data.py b/op_robot_tests/tests_files/initial_data.py
index ac63702..3ed92c0 100644
--- a/op_robot_tests/tests_files/initial_data.py
+++ b/op_robot_tests/tests_files/initial_data.py
@@ -4,13 +4,20 @@ now = datetime.now()
 from munch import munchify
 from faker import Factory
 fake = Factory.create('uk_UA')
+fake_ru = Factory.create('ru')
+fake_en = Factory.create()
 
 test_tender_data = {
     "title": fake.catch_phrase(),
     "mode": "test",
     "submissionMethodDetails": "quick",
+    "description": "Тестовий тендер",
+    "description_en": "Test tender",
+    "description_ru": "Тестовый тендер",
     "procuringEntity": {
         "name": fake.company(),
+        "name_ru": fake_ru.company(),
+        "name_en": fake_en.company(),
         "identifier": {
             "scheme": u"UA-EDR",
             "id": u"0000{}".format(fake.pyint()),
diff --git a/setup.py b/setup.py
index 76ade2c..e591a36 100644
--- a/setup.py
+++ b/setup.py
@@ -20,6 +20,10 @@ setup(name='op_robot_tests',
       install_requires=[
           # -*- Extra requirements: -*-
           'robotframework',
+          'robotframework-selenium2library',
+          'robotframework-debuglibrary',
+          'robotframework-selenium2screenshots',
+          'Pillow',
           'iso8601',
           'PyYAML',
           'munch',