From 7fcd8317e70729f7bace70583618e3f118c36bd1 Mon Sep 17 00:00:00 2001
From: cesar991 <cesar.espinosa@artica.es>
Date: Tue, 19 Jul 2016 15:54:23 +0200
Subject: [PATCH] Add edit_collection function

---
 tests/console/include/collection_functions.py | 20 +++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/tests/console/include/collection_functions.py b/tests/console/include/collection_functions.py
index 8f220d8e41..74904d0e0e 100644
--- a/tests/console/include/collection_functions.py
+++ b/tests/console/include/collection_functions.py
@@ -46,3 +46,23 @@ def delete_collection(driver,name):
 	driver.find_element_by_xpath('//*[@id="agent_list"]/tbody/tr[2]/td[5]/a[1]/img').click()
 	alert = driver.switch_to_alert() 
 	alert.accept()
+
+def edit_collection(driver,name,new_name=None,group=None,description=None):
+	search_collection(driver,name)
+	
+	if new_name != None:
+		driver.find_element_by_id("text-name").clear()
+		driver.find_element_by_id("text-name").send_keys(name)
+	
+	if group != None:
+		driver.find_element_by_xpath('//option[contains(.,"'+group+'")]').click()
+	
+	if description != None:
+		driver.find_element_by_id("textarea_description").clear()
+		driver.find_element_by_id("textarea_description").send_keys(description)
+		
+	driver.find_element_by_id("submit-submit").click()
+
+
+
+