I´ve searched for this and haven´t found an answer, but anyway if it is already answered somewhere, copy the link for me please.
My problem is that i´m using the extension selblocks for Selenium IDE and when i open my test case and try to run it, i get the following error: "In chrome://selblocks/content/extensions/sel-blocks.js @289: ReferenceError: FatalError is not defined"
I look for the file sel-blocks.js and it´s nowhere to be found, so i can´t even try to fix the error. I also think it is not a problem of my test case because it is still a really simple test case, tho maybe it is not correct, cause i'm new to Selenium (anyway i will put it here just in case it is indeed a problem of my testcase...). (Can't post a screenshot, don't have enough reputation points, so html will have to do)
<tr>
<td>open</td>
<td>http://test.projects.local/plans</td>
<td></td>
</tr>
<tr>
<td>store</td>
<td>2</td>
<td>i</td>
</tr>
<tr>
<td>store</td>
<td>javascript{elementExists("link=".${i})}</td>
<td>elemexist</td>
</tr>
<tr>
<td>while</td>
<td>elemexist</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>link=${i}</td>
<td></td>
</tr>
<tr>
<td>store</td>
<td>${i}++</td>
<td>i</td>
</tr>
<tr>
<td>store</td>
<td>javascript{elementExists("link=".${i})}</td>
<td>elemexist</td>
</tr>
<tr>
<td>endWhile</td>
<td></td>
<td></td>
</tr>
Anyone has an idea on how to fix this or where to find this file?
EDITED: I changed the test case so i don't need to use Selblocks, but anyway, i'm interested in knowing where is this file if anyone knows, to avoid future problems or just to know how this extension works.
Thanks beforehand!