我希望在运行nightwatchjs测试时使用execute在我的应用程序中填充一个字段
我尝试了以下内容:
.execute("document.getElementByClassName('.price').setAttribute('value', '19.99')")
这不起作用,字段未填充但是我没有收到错误。有人可以解释我的错误吗?
谢谢!
p.s - 我知道我可以通过使用.setValue('。price','9来填充该字段 .99')但我希望通过执行来学习如何做到这一点。
答案 0 :(得分:1)
您可以尝试以下代码。只有很小的变化。
x = theano.tensor.imatrix('x')
y = theano.tensor.fmatrix('y')
z = x.dot(y)
f = theano.function([x, y], z)