stale element reference exception
以下のコードを使用すると を受信し続けるので、try/catch
ブロックを追加することにしました。私はまだこのエラーを受け取ります。私のtry/catch
ブロックは正しく書かれていませんか?
it 'should test cells updated correctly', ->
try
element(By.css('#D6'))
console.log('try')
catch staleElementException
console.log('catch')
element(By.css('#D6')).click().then ->
expect(element(By.css('div.gc-formula-input')).getText()).toBe 'hello'