Retrieve from Symbian
<transferToSymbian>
task is used to transfer a file
from the Symbian device (hardware or emulator) to the PC in the run phase of
TestDriver. If the PC path is not specified, the file is retrieved to the
TestDriver result folder. This task also define the subtask,
<transfer>,
to transfer a file between the PC and the
Symbian device. When used with <retrieveFromSymbian>
task,
the wildcards and the variables are not allowed.
The subtask <transfer>
transfers a file from the PC to
the Symbian device. When used with <transferToSymbian>
then
wildcards and variables are allowed.
This subtask has the following attributes:
-
SymbianPath
: Path to a file on the Symbian device. This
must be an absolute and a valid path.
-
PCPath
: Path to the file on the PC. Wildcards and
variables are not allowed when defining the PC path.
-
move
: When set to true
, files are moved
completely to the specified path, and when set to false
, files are
copied in the specified path.
For more information about the wildcards used, seeTestDriver variables and wildcards
Example for <retrieveFromSymbian>
An example xml file to describe a
<retreiveFromSymbian>
task is provided below:
<retrieveFromSymbian>
<transfer move="false" PCPath="${resultroot}\resultChanged.txt" SymbianPath="c:\systemtest\result.txt"/>
<transfer move="true" PCPath="${epocroot}\otherResult.txt" SymbianPath="c:\systemtest\otherResult.txt"/>
</retrieveFromSymbian>