Skip to content

Instantly share code, notes, and snippets.

@nicolevanderhoeven
nicolevanderhoeven / aqueduct_jmeter.jmx
Created February 22, 2019 12:39
JMeter - Using Flood Aqueduct
<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="4.0" jmeter="4.0 r1823414">
<hashTree>
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true">
<stringProp name="TestPlan.comments"></stringProp>
<boolProp name="TestPlan.functional_mode">false</boolProp>
<boolProp name="TestPlan.tearDown_on_shutdown">true</boolProp>
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
<collectionProp name="Arguments.arguments"/>
@nicolevanderhoeven
nicolevanderhoeven / floodchrome-challenge.ts
Last active February 19, 2018 18:38
Flood Challenge - Flood Chrome script
import { step, TestSettings, Until, By, MouseButtons, Device, Driver } from '@flood/chrome'
import * as assert from 'assert'
export default () => {
step('Challenge Home', async browser => {
//Navigate to homepage.
await browser.visit('https://challenge.flood.io')
//Validate text
let validation = By.visibleText('Ready to take the test?')