Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { step, By, Key, Until, TestSettings, TestData, ENV, Browser } from '@flood/element'
import * as assert from 'assert'
export const settings: TestSettings = {
loopCount: ENV.FLOOD_LOAD_TEST ? -1 : 1,
clearCache: false,
clearCookies: false,
screenshotOnFailure: true,
actionDelay: 3,
stepDelay: 3,
}
interface Row {
query: string
href: string
count: number
}
TestData.fromCSV('googling-test-data.pass/googling-test-data.csv').shuffle()
export default async () => {