{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'PDF TO Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); "},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1101,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1102,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1103,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1104,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1105,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1106,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1107,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1108,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1109,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1110,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1111,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1112,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1113,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1114,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1115,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1116,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1117,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1118,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1119,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1120,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1121,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1122,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1123,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1124,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"No\" button.
"},"instruction":{"kind":"string","value":"Click on the \"No\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1125,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Previous\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Previous\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1126,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Ok\" button.
, "},"instruction":{"kind":"string","value":"Click on the \"Ok\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1127,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Click on the \"Ok\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Ok\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1128,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Ok\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Ok\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1129,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Yes\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Yes\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1130,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Next\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Next\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1131,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Yes\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Yes\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1132,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"cancel\" button.
"},"instruction":{"kind":"string","value":"Click on the \"cancel\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1133,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"okay\" button.
"},"instruction":{"kind":"string","value":"Click on the \"okay\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1134,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Previous\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Previous\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1135,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"okay\" button.
"},"instruction":{"kind":"string","value":"Click on the \"okay\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1136,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Cancel\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Cancel\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1137,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Ok\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Ok\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1138,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"next\" button.
"},"instruction":{"kind":"string","value":"Click on the \"next\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1139,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"cancel\" button.
"},"instruction":{"kind":"string","value":"Click on the \"cancel\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1140,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"cancel\" button.
"},"instruction":{"kind":"string","value":"Click on the \"cancel\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1141,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"Yes\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Yes\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1142,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"next\" button.








"},"instruction":{"kind":"string","value":"Click on the \"next\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1143,"cells":{"history_episodes":{"kind":"string","value":" Click on the \"next\" button.
"},"instruction":{"kind":"string","value":"Click on the \"next\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1144,"cells":{"history_episodes":{"kind":"string","value":" Select Bonaire from the scroll list
, "},"instruction":{"kind":"string","value":"Select Bonaire from the scroll list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1145,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1146,"cells":{"history_episodes":{"kind":"string","value":" Select Nauru from the scroll list
, "},"instruction":{"kind":"string","value":"Select Nauru from the scroll list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1147,"cells":{"history_episodes":{"kind":"string","value":" Select Bunny from the scroll list
, "},"instruction":{"kind":"string","value":"Select Bunny from the scroll list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1148,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1149,"cells":{"history_episodes":{"kind":"string","value":" Select American Samoa from the scroll list
, "},"instruction":{"kind":"string","value":"Select American Samoa from the scroll list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1150,"cells":{"history_episodes":{"kind":"string","value":" Select Annice from the scroll list
, "},"instruction":{"kind":"string","value":"Select Annice from the scroll list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1151,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Z5X\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Z5X\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"z5x"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1152,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"Z5X\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Z5X\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"z5x"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1153,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Z5X\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Z5X\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"z5x"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1154,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"Z5X\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Z5X\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"z5x"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1155,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"sYboe\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"sYboe\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"syboe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1156,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"sYboe\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"sYboe\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"syboe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1157,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"sYboe\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"sYboe\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"syboe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1158,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"sYboe\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"sYboe\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"syboe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1159,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"AO\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"AO\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"ao"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1160,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"AO\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"AO\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"ao"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1161,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"AO\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"AO\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"ao"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1162,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"AO\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"AO\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"ao"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1163,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"3P\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"3P\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"3p"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1164,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"3P\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"3P\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"3p"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1165,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"3P\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"3P\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"3p"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1166,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"3P\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"3P\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"3p"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1167,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"CdTuE\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"CdTuE\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"cdtue"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1168,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"CdTuE\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"CdTuE\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"cdtue"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1169,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"CdTuE\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"CdTuE\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"cdtue"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1170,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"CdTuE\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"CdTuE\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"cdtue"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1171,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"asi\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"asi\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"asi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1172,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"asi\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"asi\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"asi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1173,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"asi\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"asi\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"asi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1174,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"asi\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"asi\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"asi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1175,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Enter the password \"QHE\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"QHE\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"qhe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1176,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"QHE\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"QHE\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"qhe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1177,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Enter the password \"QHE\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"QHE\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"qhe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1178,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"QHE\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"QHE\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"qhe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1179,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"rncq\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"rncq\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"rncq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1180,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"rncq\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"rncq\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"rncq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1181,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"rncq\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"rncq\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"rncq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1182,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"rncq\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"rncq\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"rncq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1183,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"XBX\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"XBX\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"xbx"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1184,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"XBX\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"XBX\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"xbx"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1185,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"XBX\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"XBX\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"xbx"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1186,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"XBX\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"XBX\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"xbx"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1187,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"g4ywp\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"g4ywp\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"g4ywp"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1188,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"g4ywp\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"g4ywp\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"g4ywp"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1189,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"g4ywp\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"g4ywp\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"g4ywp"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1190,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"g4ywp\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"g4ywp\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"g4ywp"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1191,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"bx3\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bx3\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"bx3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1192,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Enter the password \"bx3\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bx3\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"bx3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1193,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"bx3\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bx3\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"bx3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1194,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Enter the password \"bx3\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bx3\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"bx3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1195,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter the password \"P7v\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"P7v\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"p7v"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1196,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"P7v\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"P7v\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"p7v"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1197,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter the password \"P7v\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"P7v\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"p7v"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1198,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"P7v\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"P7v\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"p7v"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1199,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"1o3G3\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"1o3G3\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"1o3g3"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":11,"numItemsPerPage":100,"numTotalItems":40186,"offset":1100,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODE2Njc1Nywic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MTcwMzU3LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.bxDZ6DdoP9J20DYSr_SHA6w3hIQBA6e4gxy5jV3m1tEMPHbQH3nikwbw_lDXjxChQmPXVg9hhDPMJDpCL8AeBw","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Close the dialog box by clicking the "x". <body ref="12"><div id="wrap" ref="1"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="17"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-1" classes="ui-dialog-title" ref="16"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="9" text="at vel faucibus convallis. mattis."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="6"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></div><div classes="ui-resizable-handle ui-resizable-w" ref="3"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="10"></div></div></body>
Close the dialog box by clicking the "x".
click
5
null
stop
Close the dialog box by clicking the "x". <body ref="12"><div id="wrap" ref="17"><div id="area" ref="16"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="18"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><span id="ui-id-4" classes="ui-dialog-title" ref="9"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="1"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-12" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="10" text="potenti. eu sollicitudin. in turpis tincidunt sit."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="7"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="13"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="8"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Close the dialog box by clicking the "x".
click
1
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="16"><div id="area" ref="18"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="2"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="17"><span id="ui-id-1" classes="ui-dialog-title" ref="1"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="15"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="8" text="enim ac. quis mi."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="14"></div><div classes="ui-resizable-handle ui-resizable-e" ref="10"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="3"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="13"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="5"></div></div></body>
Close the dialog box by clicking the "x".
click
15
null
stop
Close the dialog box by clicking the "x". <body ref="17"><div id="wrap" ref="6"><div id="area" ref="8"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="3"><span id="ui-id-3" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="4"><p ref="15" text="nisi, luctus sed fames sed."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="16"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="18"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="1"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="10"></div></div></body>
Close the dialog box by clicking the "x".
click
2
null
stop
Close the dialog box by clicking the "x". <body ref="3"><div id="wrap" ref="14"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="18"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-3" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="10"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="4"><p ref="13" text="facilisi. et fermentum,. sit."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="11"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></div><div classes="ui-resizable-handle ui-resizable-w" ref="17"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="15"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="8"></div></div></body>
Close the dialog box by clicking the "x".
click
10
null
stop
Close the dialog box by clicking the "x". <body ref="4"><div id="wrap" ref="3"><div id="area" ref="13"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-2" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="12"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="16"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="18" text="adipiscing phasellus. sagittis, congue."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="10"></div><div classes="ui-resizable-handle ui-resizable-w" ref="2"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Close the dialog box by clicking the "x".
click
12
null
stop
Close the dialog box by clicking the "x". <body ref="8"><div id="wrap" ref="2"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="5"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="16"><span id="ui-id-4" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="1"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="13"><p ref="6" text="faucibus. vitae etiam nibh."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="12"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></div><div classes="ui-resizable-handle ui-resizable-w" ref="3"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="4"></div></div></body>
Close the dialog box by clicking the "x".
click
18
null
stop
Close the dialog box by clicking the "x". <body ref="9"><div id="wrap" ref="13"><div id="area" ref="12"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="3"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="17"><span id="ui-id-4" classes="ui-dialog-title" ref="16"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="8" text="eget nibh. metus duis. tempor,. commodo."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="4"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Close the dialog box by clicking the "x".
click
14
null
stop
Close the dialog box by clicking the "x". <body ref="13"><div id="wrap" ref="8"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="4"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="2"><span id="ui-id-4" classes="ui-dialog-title" ref="10"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="3"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="12" text="morbi amet egestas elementum varius ac."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="15"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="18"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="16"></div></div></body>
Close the dialog box by clicking the "x".
click
7
null
stop
Close the dialog box by clicking the "x". <body ref="16"><div id="wrap" ref="5"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-3" classes="ui-dialog-title" ref="8"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="13"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-12" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="4" text="in. pellentesque elit orci leo."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="2"></div><div classes="ui-resizable-handle ui-resizable-s" ref="14"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="3"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="15"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="18"></div></div></body>
Close the dialog box by clicking the "x".
click
13
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="9"><div id="area" ref="11"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="13"><span id="ui-id-3" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="8"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="4"><p ref="18" text="integer pulvinar. consectetur. auctor. arcu."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="17"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="14"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Close the dialog box by clicking the "x".
click
2
null
stop
Close the dialog box by clicking the "x". <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="12"><span id="ui-id-1" classes="ui-dialog-title" ref="14"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="8"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="16" text="aenean mi non magna."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="6"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Close the dialog box by clicking the "x".
click
18
null
stop
Close the dialog box by clicking the "x". <body ref="16"><div id="wrap" ref="1"><div id="area" ref="3"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="8"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="15"><span id="ui-id-4" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="13"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="9" text="massa, eu arcu at."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="11"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="14"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="7"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="6"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="4"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="18"></div></div></body>
Close the dialog box by clicking the "x".
click
13
null
stop
Close the dialog box by clicking the "x". <body ref="3"><div id="wrap" ref="8"><div id="area" ref="14"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="13"><span id="ui-id-2" classes="ui-dialog-title" ref="1"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="16" text="lacus. ullamcorper senectus. dignissim ornare mauris."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="15"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Close the dialog box by clicking the "x".
click
7
null
stop
Close the dialog box by clicking the "x". <body ref="1"><div id="wrap" ref="8"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-1" classes="ui-dialog-title" ref="16"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="12"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="18" text="sed mauris a euismod. ornare fermentum."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="11"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="4"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="5"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Close the dialog box by clicking the "x".
click
12
null
stop
Close the dialog box by clicking the "x". <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="2"><span id="ui-id-2" classes="ui-dialog-title" ref="7"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="16"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="6"><p ref="8" text="convallis. elit lacinia. egestas tincidunt."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="9"></div><div classes="ui-resizable-handle ui-resizable-e" ref="12"></div><div classes="ui-resizable-handle ui-resizable-s" ref="13"></div><div classes="ui-resizable-handle ui-resizable-w" ref="10"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="14"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Close the dialog box by clicking the "x".
click
16
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="9"><div id="area" ref="12"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="3"><span id="ui-id-3" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="16"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="17" text="donec vitae habitant hendrerit in libero."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="1"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="11"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="18"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Close the dialog box by clicking the "x".
click
16
null
stop
Close the dialog box by clicking the "x". <body ref="13"><div id="wrap" ref="8"><div id="area" ref="10"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="1"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="5"><span id="ui-id-2" classes="ui-dialog-title" ref="16"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="15"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="9"><p ref="17" text="non egestas sapien. tortor nec."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></div><div classes="ui-resizable-handle ui-resizable-w" ref="12"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="11"></div></div></body>
Close the dialog box by clicking the "x".
click
14
null
stop
Close the dialog box by clicking the "x". <body ref="12"><div id="wrap" ref="7"><div id="area" ref="14"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="17"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><span id="ui-id-2" classes="ui-dialog-title" ref="10"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="1" text="nunc, arcu varius. et."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="18"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="16"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Close the dialog box by clicking the "x".
click
2
null
stop
Close the dialog box by clicking the "x". <body ref="10"><div id="wrap" ref="18"><div id="area" ref="8"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="16"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><span id="ui-id-2" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="13"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="14"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="2" text="et. habitant nullam hac."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="11"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Close the dialog box by clicking the "x".
click
13
null
stop
Close the dialog box by clicking the "x". <body ref="8"><div id="wrap" ref="6"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="14"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-4" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="16"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="9"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="3"><p ref="2" text="tellus sit risus. vitae pulvinar. sit diam."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></div><div classes="ui-resizable-handle ui-resizable-w" ref="13"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="11"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="5"></div></div></body>
Close the dialog box by clicking the "x".
click
16
null
stop
Close the dialog box by clicking the "x". <body ref="11"><div id="wrap" ref="14"><div id="area" ref="10"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="1"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="4"><span id="ui-id-3" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="16" text="sit. cras non, proin non magna tincidunt."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></div><div classes="ui-resizable-handle ui-resizable-w" ref="8"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="9"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="12"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="6"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Close the dialog box by clicking the "x".
click
5
null
stop
Close the dialog box by clicking the "x". <body ref="18"><div id="wrap" ref="14"><div id="area" ref="10"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="15"><span id="ui-id-1" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="9"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="8"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="2" text="condimentum odio aliquet convallis in."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="7"></div><div classes="ui-resizable-handle ui-resizable-e" ref="3"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="16"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="17"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="6"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="11"></div></div></body>
Close the dialog box by clicking the "x".
click
9
null
stop
Close the dialog box by clicking the "x". <body ref="2"><div id="wrap" ref="10"><div id="area" ref="16"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="8"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-2" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="11"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="4"><p ref="1" text="semper nunc. elementum aenean. tellus laoreet tincidunt."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="9"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></div><div classes="ui-resizable-handle ui-resizable-w" ref="13"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="6"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="18"></div></div></body>
Close the dialog box by clicking the "x".
click
11
null
stop
Click on the "No" button. <body ref="4"><div id="wrap" ref="1"><div id="area" ref="9"><div ref="7" text="faucibus risus bibendum"></div><div ref="2" text="enim a, urna"></div><button ref="6" text="no"></button><span ref="8" text="lectus condimentum pretium:"></span><input_text ref="3"></input_text><div ref="5" text="leo faucibus egestas"></div><div ref="4" text="mauris eget amet"></div></div></div></body>
Click on the "No" button.
click
6
null
stop
Click on the "Previous" button. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="7"><span ref="2" text="turpis dictumst risus:"></span><input_text ref="11"></input_text><button ref="5" text="yes"></button><span ref="10" text="pharetra mollis proin:"></span><input_text ref="1"></input_text><button ref="8" text="previous"></button><button ref="6" text="no"></button><input_text ref="9"></input_text></div></div></body>
Click on the "Previous" button.
click
8
null
stop
Click on the "Ok" button. <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><input_text ref="8"></input_text><div ref="7" text="laoreet tristique phasellus"></div><div ref="1" text="interdum massa duis"></div><button ref="3" text="ok"></button><span ref="10" text="pulvinar nulla nunc,:"></span><input_text ref="6"></input_text><input_text ref="5"></input_text></div></div></body>,
Click on the "Ok" button.
click
8
null
continue
{click,8,} Click on the "Ok" button. <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><input_text ref="8"></input_text><div ref="7" text="laoreet tristique phasellus"></div><div ref="1" text="interdum massa duis"></div><button ref="3" text="ok"></button><span ref="10" text="pulvinar nulla nunc,:"></span><input_text ref="6"></input_text><input_text ref="5"></input_text></div></div></body>
Click on the "Ok" button.
click
3
null
stop
Click on the "Ok" button. <body ref="8"><div id="wrap" ref="3"><div id="area" ref="6"><div ref="2" text="et rhoncus sed"></div><button ref="4" text="ok"></button><input_text ref="7"></input_text><div ref="5" text="id feugiat neque"></div><div ref="1" text="vestibulum orci sed"></div><span ref="9" text="nibh vel risus:"></span><input_text ref="8"></input_text></div></div></body>
Click on the "Ok" button.
click
4
null
stop
Click on the "Yes" button. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="3"><div ref="9" text="turpis nunc, suspendisse"></div><div ref="4" text="metus suspendisse senectus"></div><div ref="7" text="volutpat cursus mauris"></div><div ref="6" text="phasellus netus morbi"></div><button ref="8" text="ok"></button><button ref="2" text="yes"></button></div></div></body>
Click on the "Yes" button.
click
2
null
stop
Click on the "Next" button. <body ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><button ref="9" text="previous"></button><div ref="3" text="netus aliquet commodo,"></div><div ref="8" text="luctus natoque volutpat,"></div><button ref="4" text="next"></button><button ref="5" text="cancel"></button><div ref="1" text="scelerisque velit sed"></div></div></div></body>
Click on the "Next" button.
click
4
null
stop
Click on the "Yes" button. <body ref="8"><div id="wrap" ref="1"><div id="area" ref="5"><div ref="7" text="enim ut parturient"></div><div ref="2" text="posuere quam convallis"></div><button ref="3" text="yes"></button><input_text ref="9"></input_text><button ref="6" text="no"></button><input_text ref="4"></input_text></div></div></body>
Click on the "Yes" button.
click
3
null
stop
Click on the "cancel" button. <body ref="4"><div id="wrap" ref="9"><div id="area" ref="8"><button ref="6" text="cancel"></button><button ref="3" text="cancel"></button><div ref="1" text="tincidunt non cras"></div><button ref="7" text="okay"></button><button ref="2" text="ok"></button><button ref="5" text="previous"></button></div></div></body>
Click on the "cancel" button.
click
3
null
stop
Click on the "okay" button. <body ref="4"><div id="wrap" ref="5"><div id="area" ref="2"><button ref="9" text="next"></button><input_text ref="10"></input_text><button ref="6" text="okay"></button><span ref="3" text="dictum feugiat id:"></span><input_text ref="7"></input_text><input_text ref="8"></input_text><div ref="1" text="suscipit non commodo"></div></div></div></body>
Click on the "okay" button.
click
6
null
stop
Click on the "Previous" button. <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><button ref="9" text="submit"></button><button ref="8" text="yes"></button><div ref="7" text="malesuada tortor eu"></div><button ref="2" text="ok"></button><input_text ref="3"></input_text><button ref="1" text="previous"></button></div></div></body>
Click on the "Previous" button.
click
1
null
stop
Click on the "okay" button. <body ref="6"><div id="wrap" ref="9"><div id="area" ref="4"><div ref="7" text="eu libero a,"></div><button ref="3" text="okay"></button><div ref="2" text="ut amet nibh"></div><button ref="8" text="cancel"></button><button ref="1" text="no"></button><div ref="5" text="nibh malesuada augue"></div></div></div></body>
Click on the "okay" button.
click
3
null
stop
Click on the "Cancel" button. <body ref="2"><div id="wrap" ref="3"><div id="area" ref="7"><div ref="9" text="at ultricies bibendum"></div><input_text ref="4"></input_text><div ref="1" text="platea egestas at"></div><span ref="6" text="nisi, non, sed:"></span><input_text ref="8"></input_text><div ref="5" text="id mauris in"></div><button ref="10" text="cancel"></button></div></div></body>
Click on the "Cancel" button.
click
10
null
stop
Click on the "Ok" button. <body ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div ref="3" text="blandit et nec"></div><input_text ref="1"></input_text><div ref="8" text="sit quam amet"></div><input_text ref="5"></input_text><input_text ref="4"></input_text><button ref="9" text="ok"></button></div></div></body>
Click on the "Ok" button.
click
9
null
stop
Click on the "next" button. <body ref="11"><div id="wrap" ref="12"><div id="area" ref="5"><span ref="2" text="gravida mollis imperdiet:"></span><input_text ref="10"></input_text><input_text ref="6"></input_text><span ref="4" text="facilisi et donec:"></span><input_text ref="9"></input_text><div ref="8" text="cras laoreet in"></div><span ref="1" text="odio lobortis purus,:"></span><input_text ref="3"></input_text><button ref="7" text="next"></button></div></div></body>
Click on the "next" button.
click
7
null
stop
Click on the "cancel" button. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="7"><button ref="10" text="next"></button><button ref="8" text="ok"></button><span ref="9" text="venenatis praesent at:"></span><input_text ref="5"></input_text><button ref="6" text="cancel"></button><input_text ref="1"></input_text><input_text ref="4"></input_text></div></div></body>
Click on the "cancel" button.
click
6
null
stop
Click on the "cancel" button. <body ref="8"><div id="wrap" ref="3"><div id="area" ref="5"><div ref="2" text="gravida cursus bibendum"></div><button ref="1" text="cancel"></button><button ref="9" text="okay"></button><button ref="6" text="cancel"></button><div ref="4" text="aliquam risus massa"></div><input_text ref="7"></input_text></div></div></body>
Click on the "cancel" button.
click
6
null
stop
Click on the "Yes" button. <body ref="4"><div id="wrap" ref="5"><div id="area" ref="3"><input_text ref="2"></input_text><input_text ref="9"></input_text><button ref="7" text="yes"></button><input_text ref="1"></input_text><span ref="6" text="et laoreet penatibus:"></span><input_text ref="8"></input_text><div ref="10" text="pharetra at vitae"></div></div></div></body>
Click on the "Yes" button.
click
7
null
stop
Click on the "next" button. <body ref="6"><div id="wrap" ref="10"><div id="area" ref="1"><input_text ref="7"></input_text><br ref="13"></br><button ref="12" text="no"></button><br ref="5"></br><div ref="4" text="mauris nam sit"></div><button ref="9" text="next"></button><span ref="11" text="et id velit:"></span><input_text ref="8"></input_text><br ref="3"></br><input_text ref="2"></input_text><br ref="14"></br></div></div></body>
Click on the "next" button.
click
9
null
stop
Click on the "next" button. <body ref="6"><div id="wrap" ref="4"><div id="area" ref="3"><button ref="9" text="ok"></button><div ref="2" text="fames blandit vel"></div><div ref="8" text="duis vel fringilla"></div><button ref="5" text="next"></button><span ref="1" text="urna massa ultricies:"></span><input_text ref="7"></input_text><button ref="10" text="no"></button></div></div></body>
Click on the "next" button.
click
5
null
stop
Select Bonaire from the scroll list <body ref="8"><form id="mturk_form" ref="3"><div id="wrap" ref="15"><div id="area" ref="11"><select id="options" ref="10"><option ref="14" text="liberia"></option><option ref="2" text="new caledonia"></option><option ref="13" text="suriname"></option><option ref="16" text="saint lucia"></option><option ref="4" text="comoros"></option><option ref="5" text="syrian arab republic"></option><option ref="12" text="guam"></option><option ref="1" text="netherlands"></option><option ref="9" text="bonaire"></option><option ref="7" text="belarus"></option></select><button classes="secondary-action" ref="6" text="submit"></button></div></div></form></body>,
Select Bonaire from the scroll list
click
10
null
stop
click submit <body ref="8"><form id="mturk_form" ref="3"><div id="wrap" ref="15"><div id="area" ref="11"><select id="options" ref="10"><option ref="14" text="liberia"></option><option ref="2" text="new caledonia"></option><option ref="13" text="suriname"></option><option ref="16" text="saint lucia"></option><option ref="4" text="comoros"></option><option ref="5" text="syrian arab republic"></option><option ref="12" text="guam"></option><option ref="1" text="netherlands"></option><option ref="9" text="bonaire"></option><option ref="7" text="belarus"></option></select><button classes="secondary-action" ref="6" text="submit"></button></div></div></form></body>
click submit
click
6
null
stop
Select Nauru from the scroll list <body ref="4"><form id="mturk_form" ref="3"><div id="wrap" ref="15"><div id="area" ref="2"><select id="options" ref="10"><option ref="11" text="gambia"></option><option ref="1" text="mexico"></option><option ref="9" text="nauru"></option><option ref="14" text="nigeria"></option><option ref="6" text="seychelles"></option><option ref="12" text="lebanon"></option><option ref="13" text="macedonia"></option><option ref="5" text="italy"></option><option ref="7" text="nicaragua"></option></select><button classes="secondary-action" ref="8" text="submit"></button></div></div></form></body>,
Select Nauru from the scroll list
click
10
null
stop
Select Bunny from the scroll list <body ref="6"><form id="mturk_form" ref="8"><div id="wrap" ref="4"><div id="area" ref="5"><select id="options" ref="1"><option ref="13" text="glennis"></option><option ref="14" text="hortense"></option><option ref="7" text="moira"></option><option ref="11" text="christina"></option><option ref="9" text="bunny"></option><option ref="2" text="riane"></option><option ref="10" text="georgeta"></option><option ref="3" text="carmelina"></option><option ref="12" text="letitia"></option></select><button classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select Bunny from the scroll list
click
1
null
stop
click submit <body ref="6"><form id="mturk_form" ref="8"><div id="wrap" ref="4"><div id="area" ref="5"><select id="options" ref="1"><option ref="13" text="glennis"></option><option ref="14" text="hortense"></option><option ref="7" text="moira"></option><option ref="11" text="christina"></option><option ref="9" text="bunny"></option><option ref="2" text="riane"></option><option ref="10" text="georgeta"></option><option ref="3" text="carmelina"></option><option ref="12" text="letitia"></option></select><button classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>
click submit
click
15
null
stop
Select American Samoa from the scroll list <body ref="7"><form id="mturk_form" ref="5"><div id="wrap" ref="4"><div id="area" ref="8"><select id="options" ref="12"><option ref="13" text="bhutan"></option><option ref="9" text="congo"></option><option ref="3" text="cuba"></option><option ref="15" text="tanzania"></option><option ref="11" text="mongolia"></option><option ref="10" text="american samoa"></option><option ref="1" text="haiti"></option><option ref="6" text="maldives"></option><option ref="2" text="lebanon"></option></select><button classes="secondary-action" ref="14" text="submit"></button></div></div></form></body>,
Select American Samoa from the scroll list
click
12
null
stop
Select Annice from the scroll list <body ref="16"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="9"><select id="options" ref="10"><option ref="13" text="tatum"></option><option ref="14" text="faunie"></option><option ref="15" text="nisse"></option><option ref="6" text="malory"></option><option ref="17" text="rafaelita"></option><option ref="11" text="annice"></option><option ref="8" text="janessa"></option><option ref="5" text="brandie"></option><option ref="12" text="annis"></option><option ref="1" text="ira"></option><option ref="2" text="lorain"></option></select><button classes="secondary-action" ref="3" text="submit"></button></div></div></form></body>,
Select Annice from the scroll list
click
10
null
stop
{click,11,} Enter the password "Z5X" into the first text field <body ref="12"><form id="mturk_form" ref="8"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="4"><p ref="5"><label ref="6" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="3"><label ref="1" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "Z5X" into the first text field
keydown
11
z5x
stop
{click,7,} Enter the password "Z5X" into the second text field <body ref="12"><form id="mturk_form" ref="8"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="4"><p ref="5"><label ref="6" text="password"></label><input_password id="password" ref="11" value="z5x"></input_password></p><p ref="3"><label ref="1" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "Z5X" into the second text field
keydown
7
z5x
stop
{click,11,} Enter the password "Z5X" into the first text field <body ref="12"><form id="mturk_form" ref="8"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="4"><p ref="5"><label ref="6" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="3"><label ref="1" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "Z5X" into the first text field
keydown
11
z5x
stop
{click,7,} Enter the password "Z5X" into the second text field <body ref="12"><form id="mturk_form" ref="8"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="4"><p ref="5"><label ref="6" text="password"></label><input_password id="password" ref="11" value="z5x"></input_password></p><p ref="3"><label ref="1" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "Z5X" into the second text field
keydown
7
z5x
stop
{click,4,} Enter the password "sYboe" into the first text field <body ref="1"><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="9"><p ref="6"><label ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="12"><label ref="3" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "sYboe" into the first text field
keydown
4
syboe
stop
{click,2,} Enter the password "sYboe" into the second text field <body ref="1"><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="9"><p ref="6"><label ref="5" text="password"></label><input_password id="password" ref="4" value="syboe"></input_password></p><p ref="12"><label ref="3" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "sYboe" into the second text field
keydown
2
syboe
stop
{click,4,} Enter the password "sYboe" into the first text field <body ref="1"><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="9"><p ref="6"><label ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="12"><label ref="3" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "sYboe" into the first text field
keydown
4
syboe
stop
{click,2,} Enter the password "sYboe" into the second text field <body ref="1"><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="9"><p ref="6"><label ref="5" text="password"></label><input_password id="password" ref="4" value="syboe"></input_password></p><p ref="12"><label ref="3" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "sYboe" into the second text field
keydown
2
syboe
stop
{click,10,} Enter the password "AO" into the first text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="9"><p ref="6"><label ref="7" text="password"></label><input_password id="password" ref="10"></input_password></p><p ref="11"><label ref="3" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "AO" into the first text field
keydown
10
ao
stop
Enter the password "AO" into the second text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="9"><p ref="6"><label ref="7" text="password"></label><input_password id="password" ref="10" value="ao"></input_password></p><p ref="11"><label ref="3" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "AO" into the second text field
keydown
12
ao
stop
{click,10,} Enter the password "AO" into the first text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="9"><p ref="6"><label ref="7" text="password"></label><input_password id="password" ref="10"></input_password></p><p ref="11"><label ref="3" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "AO" into the first text field
keydown
10
ao
stop
Enter the password "AO" into the second text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="9"><p ref="6"><label ref="7" text="password"></label><input_password id="password" ref="10" value="ao"></input_password></p><p ref="11"><label ref="3" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "AO" into the second text field
keydown
12
ao
stop
{click,1,} Enter the password "3P" into the first text field <body ref="3"><form id="mturk_form" ref="10"><div id="wrap" ref="5"><div id="area" ref="8"><div id="form" ref="11"><p ref="6"><label ref="4" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="9"><label ref="2" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "3P" into the first text field
keydown
1
3p
stop
Enter the password "3P" into the second text field <body ref="3"><form id="mturk_form" ref="10"><div id="wrap" ref="5"><div id="area" ref="8"><div id="form" ref="11"><p ref="6"><label ref="4" text="password"></label><input_password id="password" ref="1" value="3p"></input_password></p><p ref="9"><label ref="2" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "3P" into the second text field
keydown
7
3p
stop
{click,1,} Enter the password "3P" into the first text field <body ref="3"><form id="mturk_form" ref="10"><div id="wrap" ref="5"><div id="area" ref="8"><div id="form" ref="11"><p ref="6"><label ref="4" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="9"><label ref="2" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "3P" into the first text field
keydown
1
3p
stop
Enter the password "3P" into the second text field <body ref="3"><form id="mturk_form" ref="10"><div id="wrap" ref="5"><div id="area" ref="8"><div id="form" ref="11"><p ref="6"><label ref="4" text="password"></label><input_password id="password" ref="1" value="3p"></input_password></p><p ref="9"><label ref="2" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "3P" into the second text field
keydown
7
3p
stop
{click,7,} Enter the password "CdTuE" into the first text field <body ref="9"><form id="mturk_form" ref="12"><div id="wrap" ref="2"><div id="area" ref="8"><div id="form" ref="3"><p ref="4"><label ref="11" text="password"></label><input_password id="password" ref="7"></input_password></p><p ref="6"><label ref="5" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "CdTuE" into the first text field
keydown
7
cdtue
stop
Enter the password "CdTuE" into the second text field <body ref="9"><form id="mturk_form" ref="12"><div id="wrap" ref="2"><div id="area" ref="8"><div id="form" ref="3"><p ref="4"><label ref="11" text="password"></label><input_password id="password" ref="7" value="cdtue"></input_password></p><p ref="6"><label ref="5" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "CdTuE" into the second text field
keydown
10
cdtue
stop
{click,7,} Enter the password "CdTuE" into the first text field <body ref="9"><form id="mturk_form" ref="12"><div id="wrap" ref="2"><div id="area" ref="8"><div id="form" ref="3"><p ref="4"><label ref="11" text="password"></label><input_password id="password" ref="7"></input_password></p><p ref="6"><label ref="5" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "CdTuE" into the first text field
keydown
7
cdtue
stop
Enter the password "CdTuE" into the second text field <body ref="9"><form id="mturk_form" ref="12"><div id="wrap" ref="2"><div id="area" ref="8"><div id="form" ref="3"><p ref="4"><label ref="11" text="password"></label><input_password id="password" ref="7" value="cdtue"></input_password></p><p ref="6"><label ref="5" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "CdTuE" into the second text field
keydown
10
cdtue
stop
{click,1,} Enter the password "asi" into the first text field <body ref="4"><form id="mturk_form" ref="8"><div id="wrap" ref="12"><div id="area" ref="7"><div id="form" ref="3"><p ref="10"><label ref="5" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="11"><label ref="2" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "asi" into the first text field
keydown
1
asi
stop
Enter the password "asi" into the second text field <body ref="4"><form id="mturk_form" ref="8"><div id="wrap" ref="12"><div id="area" ref="7"><div id="form" ref="3"><p ref="10"><label ref="5" text="password"></label><input_password id="password" ref="1" value="asi"></input_password></p><p ref="11"><label ref="2" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "asi" into the second text field
keydown
9
asi
stop
{click,1,} Enter the password "asi" into the first text field <body ref="4"><form id="mturk_form" ref="8"><div id="wrap" ref="12"><div id="area" ref="7"><div id="form" ref="3"><p ref="10"><label ref="5" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="11"><label ref="2" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "asi" into the first text field
keydown
1
asi
stop
Enter the password "asi" into the second text field <body ref="4"><form id="mturk_form" ref="8"><div id="wrap" ref="12"><div id="area" ref="7"><div id="form" ref="3"><p ref="10"><label ref="5" text="password"></label><input_password id="password" ref="1" value="asi"></input_password></p><p ref="11"><label ref="2" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "asi" into the second text field
keydown
9
asi
stop
{click,12,} Enter the password "QHE" into the first text field <body ref="11"><form id="mturk_form" ref="1"><div id="wrap" ref="8"><div id="area" ref="6"><div id="form" ref="2"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="12"></input_password></p><p ref="9"><label ref="3" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "QHE" into the first text field
keydown
12
qhe
stop
Enter the password "QHE" into the second text field <body ref="11"><form id="mturk_form" ref="1"><div id="wrap" ref="8"><div id="area" ref="6"><div id="form" ref="2"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="12" value="qhe"></input_password></p><p ref="9"><label ref="3" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "QHE" into the second text field
keydown
7
qhe
stop
{click,12,} Enter the password "QHE" into the first text field <body ref="11"><form id="mturk_form" ref="1"><div id="wrap" ref="8"><div id="area" ref="6"><div id="form" ref="2"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="12"></input_password></p><p ref="9"><label ref="3" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "QHE" into the first text field
keydown
12
qhe
stop
Enter the password "QHE" into the second text field <body ref="11"><form id="mturk_form" ref="1"><div id="wrap" ref="8"><div id="area" ref="6"><div id="form" ref="2"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="12" value="qhe"></input_password></p><p ref="9"><label ref="3" text="verify password"></label><input_password id="verify" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></div></form></body>,
Enter the password "QHE" into the second text field
keydown
7
qhe
stop
{click,1,} Enter the password "rncq" into the first text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="12"><div id="form" ref="6"><p ref="3"><label ref="8" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="5"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "rncq" into the first text field
keydown
1
rncq
stop
Enter the password "rncq" into the second text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="12"><div id="form" ref="6"><p ref="3"><label ref="8" text="password"></label><input_password id="password" ref="1" value="rncq"></input_password></p><p ref="5"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "rncq" into the second text field
keydown
10
rncq
stop
{click,1,} Enter the password "rncq" into the first text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="12"><div id="form" ref="6"><p ref="3"><label ref="8" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="5"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "rncq" into the first text field
keydown
1
rncq
stop
Enter the password "rncq" into the second text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="12"><div id="form" ref="6"><p ref="3"><label ref="8" text="password"></label><input_password id="password" ref="1" value="rncq"></input_password></p><p ref="5"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "rncq" into the second text field
keydown
10
rncq
stop
{click,2,} Enter the password "XBX" into the first text field <body ref="9"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="5"><p ref="12"><label ref="8" text="password"></label><input_password id="password" ref="2"></input_password></p><p ref="3"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "XBX" into the first text field
keydown
2
xbx
stop
Enter the password "XBX" into the second text field <body ref="9"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="5"><p ref="12"><label ref="8" text="password"></label><input_password id="password" ref="2" value="xbx"></input_password></p><p ref="3"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "XBX" into the second text field
keydown
10
xbx
stop
{click,2,} Enter the password "XBX" into the first text field <body ref="9"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="5"><p ref="12"><label ref="8" text="password"></label><input_password id="password" ref="2"></input_password></p><p ref="3"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "XBX" into the first text field
keydown
2
xbx
stop
Enter the password "XBX" into the second text field <body ref="9"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="5"><p ref="12"><label ref="8" text="password"></label><input_password id="password" ref="2" value="xbx"></input_password></p><p ref="3"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "XBX" into the second text field
keydown
10
xbx
stop
{click,3,} Enter the password "g4ywp" into the first text field <body ref="12"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><p ref="11"><label ref="10" text="password"></label><input_password id="password" ref="3"></input_password></p><p ref="1"><label ref="7" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "g4ywp" into the first text field
keydown
3
g4ywp
stop
{click,9,} Enter the password "g4ywp" into the second text field <body ref="12"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><p ref="11"><label ref="10" text="password"></label><input_password id="password" ref="3" value="g4ywp"></input_password></p><p ref="1"><label ref="7" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "g4ywp" into the second text field
keydown
9
g4ywp
stop
{click,3,} Enter the password "g4ywp" into the first text field <body ref="12"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><p ref="11"><label ref="10" text="password"></label><input_password id="password" ref="3"></input_password></p><p ref="1"><label ref="7" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "g4ywp" into the first text field
keydown
3
g4ywp
stop
{click,9,} Enter the password "g4ywp" into the second text field <body ref="12"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><p ref="11"><label ref="10" text="password"></label><input_password id="password" ref="3" value="g4ywp"></input_password></p><p ref="1"><label ref="7" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "g4ywp" into the second text field
keydown
9
g4ywp
stop
{click,4,} Enter the password "bx3" into the first text field <body ref="10"><form id="mturk_form" ref="5"><div id="wrap" ref="7"><div id="area" ref="6"><div id="form" ref="8"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="2"><label ref="11" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "bx3" into the first text field
keydown
4
bx3
stop
{click,12,} Enter the password "bx3" into the second text field <body ref="10"><form id="mturk_form" ref="5"><div id="wrap" ref="7"><div id="area" ref="6"><div id="form" ref="8"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="4" value="bx3"></input_password></p><p ref="2"><label ref="11" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "bx3" into the second text field
keydown
12
bx3
stop
{click,4,} Enter the password "bx3" into the first text field <body ref="10"><form id="mturk_form" ref="5"><div id="wrap" ref="7"><div id="area" ref="6"><div id="form" ref="8"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="2"><label ref="11" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "bx3" into the first text field
keydown
4
bx3
stop
{click,12,} Enter the password "bx3" into the second text field <body ref="10"><form id="mturk_form" ref="5"><div id="wrap" ref="7"><div id="area" ref="6"><div id="form" ref="8"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="4" value="bx3"></input_password></p><p ref="2"><label ref="11" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "bx3" into the second text field
keydown
12
bx3
stop
{click,5,} Enter the password "P7v" into the first text field <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="12"><p ref="11"><label ref="8" text="password"></label><input_password id="password" ref="5"></input_password></p><p ref="4"><label ref="9" text="verify password"></label><input_password id="verify" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "P7v" into the first text field
keydown
5
p7v
stop
Enter the password "P7v" into the second text field <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="12"><p ref="11"><label ref="8" text="password"></label><input_password id="password" ref="5" value="p7v"></input_password></p><p ref="4"><label ref="9" text="verify password"></label><input_password id="verify" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "P7v" into the second text field
keydown
1
p7v
stop
{click,5,} Enter the password "P7v" into the first text field <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="12"><p ref="11"><label ref="8" text="password"></label><input_password id="password" ref="5"></input_password></p><p ref="4"><label ref="9" text="verify password"></label><input_password id="verify" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "P7v" into the first text field
keydown
5
p7v
stop
Enter the password "P7v" into the second text field <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="12"><p ref="11"><label ref="8" text="password"></label><input_password id="password" ref="5" value="p7v"></input_password></p><p ref="4"><label ref="9" text="verify password"></label><input_password id="verify" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "P7v" into the second text field
keydown
1
p7v
stop
{click,11,} Enter the password "1o3G3" into the first text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="12"><label ref="10" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="6"><label ref="1" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "1o3G3" into the first text field
keydown
11
1o3g3
stop