メインコンテンツへスキップ

abort

次のいずれかのエラーコードでリクエストを中止します: Failed, Aborted, TimedOut, AccessDenied, ConnectionClosed, ConnectionReset, ConnectionRefused, ConnectionAborted, ConnectionFailed, NameNotResolved, InternetDisconnected, AddressUnreachable, BlockedByClient, BlockedByResponse

使用方法
mock.abort(errorCode)
パラメーター
名前詳細
errorCodeErrorCodeレスポンスのエラーコード。次のいずれか: Failed, Aborted, TimedOut, AccessDenied, ConnectionClosed, ConnectionReset, ConnectionRefused, ConnectionAborted, ConnectionFailed, NameNotResolved, InternetDisconnected, AddressUnreachable, BlockedByClient, BlockedByResponse
abort.js
it('should block Google Analytics from page', async () => {
const mock = await browser.mock('https://#/**')
mock.abort('Failed')
})

ようこそ!何かお手伝いできることはありますか?

WebdriverIO AI Copilot