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'