waitForTimeout

Type:
<number>

It tells the browser to wait a quantity of time in milliseconds before processing the content over the target url.
  • CLI
  • JavaScript
  • Shell
  • Python
  • Ruby
const mql = require('@microlink/mql')

const { status, data } = await mql('https://dev.to', {
  screenshot: true,
  waitForTimeout: 3000
})

mql.render(data)
You can specify the value in any of the following human-readable way:
https://microlink.io&waitForTiemout=3s       # 3000
https://microlink.io&waitForTiemout=3secs    # 3000
https://microlink.io&waitForTiemout=3second  # 3000
https://microlink.io&waitForTiemout=3seconds # 3000
https://microlink.io&waitForTiemout=3000     # 3000