clearValue
inputまたはtextarea要素の値をクリアします。このコマンドを使用する前に、要素を操作できることを確認してください。無効になっているか、読み取り専用モードのinput要素はクリアできません。
使用方法
$(selector).clearValue()
例
clearValue.js
it('should demonstrate the clearValue command', async () => {
    const elem = await $('.input')
    await elem.setValue('test123')
    const value = await elem.getValue()
    console.log(value) // returns 'test123'
    await elem.clearValue()
    value = await elem.getValue()
    assert(value === ''); // true
})