我有一个问题,我需要遍历使用不可点击的 DalekJS 的链接,它是复制/粘贴的。如何从浏览器的输入字段中检索值,然后在 test.open() 调用中使用它?
<table>
<tbody>
<tr>
<td>Link 1</td>
<td><input type="text" value="http://example.com/link-1" class="start-link"></td>
</tr>
<tr>
<td>Link 2</td>
<td><input type="text" value="http://example.com/link-2" class="start-link"></td>
<tr>
</table>
在上面的示例中,我希望 DalekJStest.open('http://example.com/link-1');
在我的测试过程中动态运行。
module.exports = {
'A test case': function (test) {
test.open('http://example.com/example-from-above.html')
.open('http://example.com/link-1') //This is the link I'm trying to retrieve dynamically.
.screenshot('image.png')
.done();
}
}
我怎样才能做到这一点?