[mobile][widget02][sync test case from suprem] 97/111197/1
authorzy123.yuan <zy123.yuan@samsung.com>
Fri, 20 Jan 2017 02:15:23 +0000 (10:15 +0800)
committerzy123.yuan <zy123.yuan@samsung.com>
Fri, 20 Jan 2017 02:15:38 +0000 (10:15 +0800)
- sign unsigned test widget
- change path for supporting global user

Change-Id: I7d8c61636fecde3c88319f86b464751c56f61d49
Signed-off-by: zy123.yuan <zy123.yuan@samsung.com>
12 files changed:
mobile/tct-widget02-w3c-tests/README
mobile/tct-widget02-w3c-tests/askpolicy.sh [new file with mode: 0755]
mobile/tct-widget02-w3c-tests/inst.wgt.py
mobile/tct-widget02-w3c-tests/scripts/xwalk_common.sh
mobile/tct-widget02-w3c-tests/tests.full.xml
mobile/tct-widget02-w3c-tests/tests.xml
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt [changed mode: 0755->0644]
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt [changed mode: 0755->0644]
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt [changed mode: 0755->0644]
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt [changed mode: 0755->0644]
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt [changed mode: 0755->0644]
mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt [changed mode: 0755->0644]

index dde7a72db465e1e9db8d6aec31ca1a74179af670..296add47db68e7e344def1297b9ab9b8fe50d0df 100755 (executable)
@@ -59,16 +59,16 @@ Steps:
    ./pack.sh
 
 3. Unzip the package on the test machine by running the following command:
-   unzip -o tct-widget02-w3c-tests-<version>.zip -d /home/owner/share/tct
+   unzip -o tct-widget02-w3c-tests-<version>.zip -d /home/{USER}/share/tct
 
 4. Install the package on the test machine by running the following command:
-   /home/owner/share/tct/opt/tct-widget02-w3c-tests/inst.sh
+   /home/{USER}/share/tct/opt/tct-widget02-w3c-tests/inst.sh
 
 5. Run test cases by running the following command on host:
-   testkit-lite -f device:/home/owner/share/tct/opt/tct-widget02-w3c-tests/tests.xml -e "WRTLauncher" -o tct-widget02-w3c-tests.results.xml
+   testkit-lite -f device:/home/{USER}/share/tct/opt/tct-widget02-w3c-tests/tests.xml -e "WRTLauncher" -o tct-widget02-w3c-tests.results.xml
 
 6. Prepare to install widget application by running the following command:
-   cd /home/owner/share/tct/opt/tct-widget02-w3c-tests/WidgetPackaging/w3c
+   cd /home/{USER}/share/tct/opt/tct-widget02-w3c-tests/WidgetPackaging/w3c
 
 7. Install WGT on the test machine by running the following command:
    pkgcmd -i -t wgt -q -p <wgt>
diff --git a/mobile/tct-widget02-w3c-tests/askpolicy.sh b/mobile/tct-widget02-w3c-tests/askpolicy.sh
new file mode 100755 (executable)
index 0000000..1c39bdd
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
+for i in `grep -r "0xA" /var/cynara/db/_ | grep $1`
+do
+    CLIENT=`echo $i | cut -d ";" -f1`
+    USER=`echo $i | cut -d ";" -f2`
+    PRIVILEGE=`echo $i | cut -d ";" -f3`
+    #echo "cyad --erase=\"\" -r=no -c $CLIENT -u $USER -p $PRIVILEGE"
+    cyad --erase="" -r=no -c $CLIENT -u $USER -p $PRIVILEGE
+done
index 7cdee07aa893194dbba83a48a6701bcf7be77b16..31bd49daf1cf07d1034d4ddecdae69a9e93129bf 100755 (executable)
@@ -7,7 +7,7 @@ import time
 import sys
 import subprocess
 import string
-from optparse import OptionParser, make_option\r
+from optparse import OptionParser, make_option
 import ConfigParser
 
 
@@ -20,6 +20,15 @@ tct_parser = ConfigParser.ConfigParser()
 tct_parser.read(TCT_CONFIG_FILE)
 SRC_DIR = tct_parser.get('DEVICE', 'DEVICE_SUITE_TARGET_30')
 PKG_SRC_DIR = "%s/tct/opt/%s" % (SRC_DIR, PKG_NAME)
+EXECUTION_MODE_30 = tct_parser.get('DEVICE', 'DEVICE_EXECUTION_MODE_30')
+ADMIN_USER_30 = tct_parser.get('DEVICE', 'DEVICE_ADMIN_USER_30')
+
+def userCheck():
+    global GLOVAL_OPT
+    if ADMIN_USER_30 == EXECUTION_MODE_30:
+        GLOVAL_OPT="--global"
+    else:
+        GLOVAL_OPT=""
 
 
 def doCMD(cmd):
@@ -114,7 +123,7 @@ def uninstPKGs():
                     action_status = False
                     continue
                 (return_code, output) = doRemoteCMD(
-                    "pkgcmd -u -t wgt -q -n %s" % pkg_id)
+                    "pkgcmd %s -q -u -n %s" % (GLOVAL_OPT, pkg_id))
                 for line in output:
                     if "Failure" in line:
                         action_status = False
@@ -143,7 +152,7 @@ def instPKGs():
 #                if not doRemoteCopy(os.path.join(root, file), "%s/%s" % (SRC_DIR, file)):
 #                    action_status = False
 #                (return_code, output) = doRemoteCMD(
-#                    "pkgcmd -i -t wgt -q -p %s/%s" % (SRC_DIR, file))
+#                    "pkgcmd %s -i -t wgt -q -p %s/%s" % (GLOVAL_OPT, SRC_DIR, file))
 #                doRemoteCMD("rm -rf %s/%s" % (SRC_DIR, file))
 #                for line in output:
 #                    if "Failure" in line:
@@ -191,7 +200,7 @@ def main():
         sys.exit(1)
 
     if not PARAMETERS.user:
-        PARAMETERS.user = "owner"
+        PARAMETERS.user = EXECUTION_MODE_30
     if not PARAMETERS.mode:
         PARAMETERS.mode = "SDB"
 
@@ -209,6 +218,8 @@ def main():
         print "No device provided"
         sys.exit(1)
 
+    userCheck()
+
     user_info = getUSERID()
     re_code = user_info[0]
     if re_code == 0 :
index b2b9d66741ae7e894bdff2d02f90220666675453..1d8c3f2ab697534e628f7263059cfc0ac01dcdd6 100755 (executable)
@@ -30,7 +30,9 @@
 
 ###below functions just for crosswalk ivi testing###
 
-##usage: install_app $app_path(e.g. uninstall_app /home/owner/share/tct/opt/tct-sp02-wrt-tests/tct-sp02-wrt-tests.wgt)##
+##{DEVICE_SUITE_TARGET_30} : /opt/usr/{USER}/owner/share. It is decribed in /tmp/TCT_CONFIG.
+
+##admin user usage: install_app $app_path(e.g. uninstall_app  {DEVICE_SUITE_TARGET_30}/tct/opt/tct-sp02-wrt-tests/tct-sp02-wrt-tests.wgt)##
 function install_app(){
     pkgcmd -i -t wgt -q -p $1
 }
index 70d89d19bde1e47ff43a85ce58d0d95fb1296ddd..88a9f5bde0747bbe41962a9f698ae71315939d65 100755 (executable)
@@ -5,7 +5,7 @@
     <set name="WidgetPackaging">
       <testcase purpose="Test widget installation for the path include \ in the opposite direction." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WAC_PAKCONF_011">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -17,7 +17,7 @@
       </testcase>
       <testcase purpose="Test widget installation for the folder starts with name CLOCKS$." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_018">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -29,7 +29,7 @@
       </testcase>
       <testcase purpose="Test widget installation for the filename includes . U+002E FULL STOP at the end." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_030">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -41,7 +41,7 @@
       </testcase>
       <testcase purpose="Test widget installation for there are 2 config files and the root of the widget package." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_049">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -53,7 +53,7 @@
       </testcase>
       <testcase purpose="Test widget installation for the widget file extension is proper and in mixed case .wGt." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_055">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_055.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_055.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -65,7 +65,7 @@
       </testcase>
       <testcase purpose="Test widget installation for content main.css and data type text/css(widget with start file as main.css)." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WAC_PAKCONF_064">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -77,7 +77,7 @@
       </testcase>
       <testcase purpose="Test widget installation for start file is neither in root nor in the root of the local folder." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_074">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
@@ -89,7 +89,7 @@
       </testcase>
       <testcase purpose="Test widget installation for more than one start file is present in the package." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_080">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for start file contains a special character." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_086">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for start file with very long name, i.e. 35 character." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_088">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for icon file in a long." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_110">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for icon file with long name." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_114">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>      
       <testcase purpose="Test widget installation for icon file special character." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_116">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for icon file without file extension in the config file and in the icon file." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_119">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for no default icon is present and not custom icon is declared." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_133">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the image .gif type placed at widget package root considered as an icon image when no icon element in config.xml." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_137">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the image .svg type placed at widget package root considered as an icon image when no icon element in config.xml." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_140">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for author element is out side the widget element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WAC_PAKCONF_201">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for start file is .svg type." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_269">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for start file is .xht type." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WAC_PAKCONF_271">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for there are multiple widget element in config.xml." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WAC_PAKCONF_389">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the W3C name space is missing." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore001_1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the Tizen name space is missing." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore001_2">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the Tizen name space is invalid." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore001_4">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application tag is missing." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore002">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application is declared more than once." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore003">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application without mandatory attributes." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore003_1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application attribute id is having different package attribute type." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore004">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the package attribute within ID attribute value for tizen:application." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore004_1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the id same as package for tizen:application." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore004_2">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the id = package. for tizen:application." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore004_3">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the id name contains special character for tizen:application." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore004_7">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application package attribute value is less than 10 bytes." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore005">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application package attribute value is more than 10 bytes." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore006">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:application required_version is set to blank." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TizenCore008">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src is missing." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TZ_Core_APPC_001">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src without name attribute." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TZ_Core_APPC_002">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src with name attribute is set to blank." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TZ_Core_APPC_003">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src name pointing to a valid page exists within the package along with valid operation element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="TZ_Core_APPC_004">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src name pointing to a valid page exists within the package." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="TZ_Core_APPC_005">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element src name attribute is invalid." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="TZ_Core_APPC_006">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_006.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_006.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element operation is missing." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TZ_Core_APPC_007">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the tizen:app-control manadatory child element operation name attribute is set to blank." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="TZ_Core_APPC_008">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_008.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_008.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of TC002.wgt with the command : app_launcher -l, then uninstall the TC002.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC003.wgt with the command : app_launcher -l, then uninstall the TC003.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC003_1.wgt with the command : app_launcher -l, then uninstall the TC003_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC006.wgt with the command : app_launcher -l, then uninstall the TC006.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC006_1.wgt with the command : app_launcher -l, then uninstall the TC006_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test widget installation for the encryption attribute in tizen-setting element is set to blank." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TC008_1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the encryption attribute in tizen-setting element is set to invalid value." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TC008_2">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of TC011.wgt with the command : app_launcher -l, then uninstall the TC011.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test widget installation for the install-location attribute in tizen-setting element is set to invalid value." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TC015_1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test widget installation for the install-location attribute in tizen-setting element is set to blank." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="TC015_2">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of TCHKey018.wgt with the command : app_launcher -l, then uninstall the TCHKey018.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey018.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey018.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TCHKey019.wgt with the command : app_launcher -l, then uninstall the TCHKey019.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey019.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey019.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TCHKey020.wgt with the command : app_launcher -l, then uninstall the TCHKey020.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey020.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey020.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC017_1.wgt with the command : app_launcher -l, then uninstall the TC017_1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC019.wgt with the command : app_launcher -l, then uninstall the TC019.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC020.wgt with the command : app_launcher -l, then uninstall the TC020.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC043.wgt with the command : app_launcher -l, then uninstall the TC043.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC043.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC043.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC044.wgt with the command : app_launcher -l, then uninstall the TC044.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC044.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC044.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC045.wgt with the command : app_launcher -l, then uninstall the TC045.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC045.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC045.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of TC046.wgt with the command : app_launcher -l, then uninstall the TC046.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of av.wgt with the command : app_launcher -l, then uninstall the av.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/av.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/av.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test that the user agent does not go searching in an arbritrary for default start files." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WidgetPackaging_b5">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of bn.wgt with the command : app_launcher -l, then uninstall the bn.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bn.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bn.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test that the user agent ability to ignore subsequent repetitions of the content element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WidgetPackaging_br">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of bs.wgt with the command : app_launcher -l, then uninstall the bs.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of bz.wgt with the command : app_launcher -l, then uninstall the bz.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bz.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bz.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of d0.wgt with the command : app_launcher -l, then uninstall the d0.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of db.wgt with the command : app_launcher -l, then uninstall the db.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test that the user agent can deal with a widget with a wrong magic number." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P2" id="WidgetPackaging_dk">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of e4.wgt with the command : app_launcher -l, then uninstall the e4.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of e5.wgt with the command : app_launcher -l, then uninstall the e5.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of e6.wgt with the command : app_launcher -l, then uninstall the e6.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of e7.wgt with the command : app_launcher -l, then uninstall the e7.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of viewh.wgt with the command : app_launcher -l, then uninstall the viewh.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
             <steps>
               <step order="1">
-                <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt</step_desc>
+                <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt</step_desc>
                 <expected>Widget application is able to be installed successfully.</expected>
               </step>
               <step order="2">
           <post_condition>Get the 'package id' of z1.wgt with the command : app_launcher -l, then uninstall the z1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of z2.wgt with the command : app_launcher -l, then uninstall the z2.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test that the user agent skips a content element that points to a non-existing file and shouldn't read the following content element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_d9">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of dc.wgt with the command : app_launcher -l, then uninstall the dc.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test if the UA can verify a cryptographic zip archive." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dl">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that an empty defaultlocale attribute is ignored (and does not cause the widget to be treated as an invalid one)." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dlocignore00">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that the UA only checks the config files in the root of the widget package which are not in a locale folder." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_bh">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that the user agent rejects malformed XML." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_bu">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.html' in a locale folder)." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_c1">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.HTM' in a locale folder)." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_c2">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.htm' in the root of the widget package)." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_c3">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of bj.wgt with the command : app_launcher -l, then uninstall the bj.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bj.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bj.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of bl.wgt with the command : app_launcher -l, then uninstall the bl.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bl.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bl.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of bo.wgt with the command : app_launcher -l, then uninstall the bo.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bo.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bo.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of d1.wgt with the command : app_launcher -l, then uninstall the d1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of d2.wgt with the command : app_launcher -l, then uninstall the d2.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of cc.wgt with the command : app_launcher -l, then uninstall the cc.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of bq.wgt with the command : app_launcher -l, then uninstall the bq.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test that the UA rejects configuration documents that don't have correct widget element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_aa">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that the UA rejects configuration documents that in an invalid widget." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_ab">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that the UA rejects configuration documents that don't have correct widget element at the root." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_ac">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of ad.wgt with the command : app_launcher -l, then uninstall the ad.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ad.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ad.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test if the UA can treat file names in the default start files table case-sensitively." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_b0">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test that the UA only checks config files in the root of the widget package which are not in an arbitrary folder." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_bg">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of am.wgt with the command : app_launcher -l, then uninstall the am.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of aw.wgt with the command : app_launcher -l, then uninstall the aw.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of ta-de-000.wgt with the command : app_launcher -l, then uninstall the ta-de-000.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase purpose="Test if the UA can verify a zip archive." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_do">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can verify an invalid zip archive." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dp">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can verify config.exe document correctly." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dq">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test the UA's support for explicitly setting the invalid mime type of a file using the type attribute of the content element." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dv">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
       </testcase>
       <testcase purpose="Test if the UA can verify CoNfIG.xml document correctly." type="compliance" status="approved" component="WebAPI/Widget/Widget Packaging and XML Configuration" execution_type="auto" priority="P3" id="WidgetPackaging_dw">
         <description>
-          <test_script_entry timeout="90">/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt</test_script_entry>
         </description>
         <specs>
           <spec>
           <post_condition>Get the 'package id' of ga.wgt with the command : app_launcher -l, then uninstall the ga.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ga.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ga.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of gb.wgt with the command : app_launcher -l, then uninstall the gb.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of i1.wgt with the command : app_launcher -l, then uninstall the i1.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of i18nlro23.wgt with the command : app_launcher -l, then uninstall the i18nlro23.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'package id' of i18nlro26.wgt with the command : app_launcher -l, then uninstall the i18nlro26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nlro27.wgt with the command : app_launcher -l, then uninstall the i18nlro27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nlro28.wgt with the command : app_launcher -l, then uninstall the i18nlro28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nltr23.wgt with the command : app_launcher -l, then uninstall the i18nltr23.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nltr26.wgt with the command : app_launcher -l, then uninstall the i18nltr26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nltr27.wgt with the command : app_launcher -l, then uninstall the i18nltr27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nltr28.wgt with the command : app_launcher -l, then uninstall the i18nltr28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrlo23.wgt with the command : app_launcher -l, then uninstall the i18nrlo23.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrlo26.wgt with the command : app_launcher -l, then uninstall the i18nrlo26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrlo27.wgt with the command : app_launcher -l, then uninstall the i18nrlo27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrlo28.wgt with the command : app_launcher -l, then uninstall the i18nrlo28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl23.wgt with the command : app_launcher -l, then uninstall the i18nrtl23.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl26.wgt with the command : app_launcher -l, then uninstall the i18nrtl26.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl27.wgt with the command : app_launcher -l, then uninstall the i18nrtl27.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl28.wgt with the command : app_launcher -l, then uninstall the i18nrtl28.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl43.wgt with the command : app_launcher -l, then uninstall the i18nrtl43.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i9.wgt with the command : app_launcher -l, then uninstall the i9.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i9.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i9.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of viewb.wgt with the command : app_launcher -l, then uninstall the viewb.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of viewf.wgt with the command : app_launcher -l, then uninstall the viewf.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of viewg.wgt with the command : app_launcher -l, then uninstall the viewg.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of viewi.wgt with the command : app_launcher -l, then uninstall the viewi.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of xx.wgt with the command : app_launcher -l, then uninstall the xx.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of za.wgt with the command : app_launcher -l, then uninstall the za.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/za.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/za.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of zc.wgt with the command : app_launcher -l, then uninstall the zc.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of zz.wgt with the command : app_launcher -l, then uninstall the zz.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zz.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zz.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of ta-de-001.wgt with the command : app_launcher -l, then uninstall the ta-de-001.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of ta-de-002.wgt with the command : app_launcher -l, then uninstall the ta-de-002.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of ta-de-003.wgt with the command : app_launcher -l, then uninstall the ta-de-003.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of ta-de-004.wgt with the command : app_launcher -l, then uninstall the ta-de-004.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of as.wgt with the command : app_launcher -l, then uninstall the as.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of ao.wgt with the command : app_launcher -l, then uninstall the ao.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of d3.wgt with the command : app_launcher -l, then uninstall the d3.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of d8.wgt with the command : app_launcher -l, then uninstall the d8.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of d7.wgt with the command : app_launcher -l, then uninstall the d7.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of oa.wgt with the command : app_launcher -l, then uninstall the oa.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nlro01.wgt with the command : app_launcher -l, then uninstall the i18nlro01.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrtl44.wgt with the command : app_launcher -l, then uninstall the i18nrtl44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nlro44.wgt with the command : app_launcher -l, then uninstall the i18nlro44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nltr44.wgt with the command : app_launcher -l, then uninstall the i18nltr44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <post_condition>Get the 'application id' of i18nrlo44.wgt with the command : app_launcher -l, then uninstall the i18nrlo44.wgt with the command : pkgcmd -u -q -t wgt -n 'package id'</post_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p /home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
index f66c55948f2f003833980afeb5f82d24dbe06131..3a34f41853220aa879767729648a2ae207490ccc 100755 (executable)
     <set name="WidgetPackaging" type="script">
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_011" priority="P3" purpose="Test widget installation for the path include \ in the opposite direction.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_011.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_018" priority="P2" purpose="Test widget installation for the folder starts with name CLOCKS$.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_018.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_030" priority="P2" purpose="Test widget installation for the filename includes . U+002E FULL STOP at the end.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_030.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_049" priority="P2" purpose="Test widget installation for there are 2 config files and the root of the widget package.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_049.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_055" priority="P2" purpose="Test widget installation for the widget file extension is proper and in mixed case .wGt.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_install.sh WAC_PAKCONF_055.wGt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_install.sh WAC_PAKCONF_055.wGt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_064" priority="P3" purpose="Test widget installation for content main.css and data type text/css(widget with start file as main.css).">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_064.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_074" priority="P2" purpose="Test widget installation for start file is neither in root nor in the root of the local folder.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_074.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_080" priority="P2" purpose="Test widget installation for more than one start file is present in the package.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_080.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_086" priority="P2" purpose="Test widget installation for start file contains a special character.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_086.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_088" priority="P2" purpose="Test widget installation for start file with very long name, i.e. 35 character.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_088.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_110" priority="P2" purpose="Test widget installation for icon file in a long.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_110.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_114" priority="P2" purpose="Test widget installation for icon file with long name.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_114.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_116" priority="P2" purpose="Test widget installation for icon file special character.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_116.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_119" priority="P2" purpose="Test widget installation for icon file without file extension in the config file and in the icon file.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_119.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_133" priority="P2" purpose="Test widget installation for no default icon is present and not custom icon is declared.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_133.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_137" priority="P2" purpose="Test widget installation for the image .gif type placed at widget package root considered as an icon image when no icon element in config.xml.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_137.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_140" priority="P2" purpose="Test widget installation for the image .svg type placed at widget package root considered as an icon image when no icon element in config.xml.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_140.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_201" priority="P3" purpose="Test widget installation for author element is out side the widget element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_201.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_269" priority="P2" purpose="Test widget installation for start file is .svg type.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_269.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_271" priority="P2" purpose="Test widget installation for start file is .xht type.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh WAC_PAKCONF_271.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WAC_PAKCONF_389" priority="P3" purpose="Test widget installation for there are multiple widget element in config.xml.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh WAC_PAKCONF_389.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore001_1" priority="P3" purpose="Test widget installation for the W3C name space is missing.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore001_2" priority="P3" purpose="Test widget installation for the Tizen name space is missing.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_2.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore001_4" priority="P3" purpose="Test widget installation for the Tizen name space is invalid.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore001_4.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore002" priority="P3" purpose="Test widget installation for the tizen:application tag is missing.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore002.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore003" priority="P3" purpose="Test widget installation for the tizen:application is declared more than once.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore003_1" priority="P3" purpose="Test widget installation for the tizen:application without mandatory attributes.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore003_1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore004" priority="P3" purpose="Test widget installation for the tizen:application attribute id is having different package attribute type.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore004_1" priority="P3" purpose="Test widget installation for the package attribute within ID attribute value for tizen:application.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore004_2" priority="P3" purpose="Test widget installation for the id same as package for tizen:application.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_2.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore004_3" priority="P3" purpose="Test widget installation for the id = package. for tizen:application.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_3.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore004_7" priority="P3" purpose="Test widget installation for the id name contains special character for tizen:application.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore004_7.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore005" priority="P3" purpose="Test widget installation for the tizen:application package attribute value is less than 10 bytes.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore005.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore006" priority="P3" purpose="Test widget installation for the tizen:application package attribute value is more than 10 bytes.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore006.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TizenCore008" priority="P3" purpose="Test widget installation for the tizen:application required_version is set to blank.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TizenCore008.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_001" priority="P3" purpose="Test widget installation for the tizen:app-control manadatory child element src is missing.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_001.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_002" priority="P3" purpose="Test widget installation for the tizen:app-control manadatory child element src without name attribute.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_002.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_003" priority="P3" purpose="Test widget installation for the tizen:app-control manadatory child element src with name attribute is set to blank.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_003.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_004" priority="P2" purpose="Test widget installation for the tizen:app-control manadatory child element src name pointing to a valid page exists within the package along with valid operation element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_004.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_005" priority="P2" purpose="Test widget installation for the tizen:app-control manadatory child element src name pointing to a valid page exists within the package.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TZ_Core_APPC_005.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_006" priority="P2" purpose="Test widget installation for the tizen:app-control manadatory child element src name attribute is invalid.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_006.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_006.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_007" priority="P3" purpose="Test widget installation for the tizen:app-control manadatory child element operation is missing.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_007.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TZ_Core_APPC_008" priority="P2" purpose="Test widget installation for the tizen:app-control manadatory child element operation name attribute is set to blank.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_008.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh TZ_Core_APPC_008.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="TC002" priority="P2" purpose="Test widget for background-support attribute is set to enable.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC002.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC003_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC006_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TC008_1" priority="P3" purpose="Test widget installation for the encryption attribute in tizen-setting element is set to blank.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TC008_2" priority="P3" purpose="Test widget installation for the encryption attribute in tizen-setting element is set to invalid value.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC008_2.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="TC011" priority="P3" purpose="Test widget for screen orientation attribute is set to blank.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC011.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TC015_1" priority="P3" purpose="Test widget installation for the install-location attribute in tizen-setting element is set to invalid value.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="TC015_2" priority="P3" purpose="Test widget installation for the install-location attribute in tizen-setting element is set to blank.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh TC015_2.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="TCHKey018" priority="P3" purpose="Test widget for hwkey-event in tizen:setting is set to blank.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey018.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey018.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey019.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey019.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey020.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TCHKey020.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition>connect to internet</pre_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC017_1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition>connect to internet</pre_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC019.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition>connect to internet</pre_condition>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC020.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC043.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC043.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC044.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC044.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC045.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC045.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/TC046.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/av.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/av.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_b5" priority="P2" purpose="Test that the user agent does not go searching in an arbritrary for default start files.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b5.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_bn" priority="P3" purpose="Test if the user agent ability to deal with custom icon declarations in the config document and matching default icons.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bn.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bn.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_br" priority="P2" purpose="Test that the user agent ability to ignore subsequent repetitions of the content element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh br.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_bs" priority="P3" purpose="Tests the UA's ability to ignore subsequent repetitions of the content element.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bs.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bz.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bz.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d0.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/db.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dk" priority="P2" purpose="Test that the user agent can deal with a widget with a wrong magic number.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dk.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_e4" priority="P3" purpose="Tests the user agent's ability to correctly process a content element's encoding attribute when it is empty.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e4.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e5.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e6.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/e7.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewh.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/z2.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_d9" priority="P3" purpose="Test that the user agent skips a content element that points to a non-existing file and shouldn't read the following content element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh d9.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_dc" priority="P3" purpose="Test the UA's support for explicitly setting the valid mime type of a file using the type attribute of the content element.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/dc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dl" priority="P3" purpose="Test if the UA can verify a cryptographic zip archive.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dl.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dlocignore00" priority="P3" purpose="Test that an empty defaultlocale attribute is ignored (and does not cause the widget to be treated as an invalid one).">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_launch.sh dlocignore00.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_bh" priority="P3" purpose="Test that the UA only checks the config files in the root of the widget package which are not in a locale folder.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bh.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_bu" priority="P3" purpose="Test that the user agent rejects malformed XML.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bu.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_c1" priority="P3" purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.html' in a locale folder).">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c1.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_c2" priority="P3" purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.HTM' in a locale folder).">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c2.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_c3" priority="P3" purpose="Test if the UA can treat file names in the default start files table case-sensitively (and the file is named 'INdeX.htm' in the root of the widget package).">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh c3.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_bj" priority="P3" purpose="Test if the UA can locate the icon at the root of the widget package.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bj.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bj.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bl.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bl.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bo.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bo.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d2.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/cc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/bq.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_aa" priority="P3" purpose="Test that the UA rejects configuration documents that don't have correct widget element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh aa.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_ab" priority="P3" purpose="Test that the UA rejects configuration documents that in an invalid widget.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ab.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_ac" priority="P3" purpose="Test that the UA rejects configuration documents that don't have correct widget element at the root.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh ac.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_ad" priority="P3" purpose="Test if the UA can treat default icon at the root of the widget package name case-sensitively.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ad.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ad.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_b0" priority="P3" purpose="Test if the UA can treat file names in the default start files table case-sensitively.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh b0.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_bg" priority="P3" purpose="Test that the UA only checks config files in the root of the widget package which are not in an arbitrary folder.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh bg.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_am" priority="P3" purpose="Test if the UA can process the author href attribute correctly.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/am.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/aw.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_do" priority="P3" purpose="Test if the UA can verify a zip archive.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh split.wgt.001</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dp" priority="P3" purpose="Test if the UA can verify an invalid zip archive.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dp.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dq" priority="P3" purpose="Test if the UA can verify config.exe document correctly.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dq.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dv" priority="P3" purpose="Test the UA's support for explicitly setting the invalid mime type of a file using the type attribute of the content element.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dv.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="auto" id="WidgetPackaging_dw" priority="P3" purpose="Test if the UA can verify CoNfIG.xml document correctly.">
         <description>
-          <test_script_entry timeout="90">owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt</test_script_entry>
+          <test_script_entry timeout="90">{DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/scripts/w3c_widget_installfail.sh dw.wgt</test_script_entry>
         </description>
       </testcase>
       <testcase component="W3C_HTML5 APIs/Widget/Widget Packaging and XML Configuration" execution_type="manual" id="WidgetPackaging_ga" priority="P3" purpose="Test if the UA can process icon elements with an empty src attribute correctly.">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ga.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ga.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/gb.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i1.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i1.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl23.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl23.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl26.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl27.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
          <pre_conditio />
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl28.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl43.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i9.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i9.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewb.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewf.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewg.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/viewi.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/xx.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/za.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/za.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zc.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zc.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zz.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/zz.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-001.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-002.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-003.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-004.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/as.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/ao.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d3.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d8.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/d7.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/oa.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro01.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrtl44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nlro44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
           <pre_condition/>
           <steps>
             <step order="1">
-              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p owner_user@/home/owner/share/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt</step_desc>
+              <step_desc>Install the widget with the command: pkgcmd -i -t wgt -q -p {DEVICE_EXECUTION_MODE_30}_user@{DEVICE_SUITE_TARGET_30}/tct/opt/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo44.wgt</step_desc>
               <expected>Widget application is able to be installed successfully.</expected>
             </step>
             <step order="2">
old mode 100755 (executable)
new mode 100644 (file)
index 041686c..3760e2a
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr28.wgt differ
old mode 100755 (executable)
new mode 100644 (file)
index 3ba231c..079e853
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nltr44.wgt differ
old mode 100755 (executable)
new mode 100644 (file)
index 7148ccf..489287b
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo23.wgt differ
old mode 100755 (executable)
new mode 100644 (file)
index 7011241..ae6493c
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo26.wgt differ
old mode 100755 (executable)
new mode 100644 (file)
index bd03f20..04a5689
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/i18nrlo27.wgt differ
old mode 100755 (executable)
new mode 100644 (file)
index e1bd519..c84b49f
Binary files a/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt and b/mobile/tct-widget02-w3c-tests/widgetpackaging/w3c/ta-de-000.wgt differ