views:

16

answers:

0

I'm forming a text report about group of links and their paths and I need Selenium to paste each new record or several records from the new line. I was trying to use this code but it works only 1 time, after I close Selenium and then open it again '\n' disappears:

<td>storeText</td>
<td>\n</td>
<td>newline</td>

Report forming code (works in cycle):

<td>storeEval</td>
<td>storedVars['report'] + storedVars['title'] + storedVars['delimiter'] + storedVars['path'] + storedVars['newline']</td>
<td>report</td>

As the output I'd like to have something like .csv (to easy manipulate data in Excel) Thanks