{ // 获取包含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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1801,"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":1802,"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":1803,"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":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1804,"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":1805,"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":1806,"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":1807,"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":1808,"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":1809,"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":1810,"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":1811,"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":1812,"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":1813,"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":1814,"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":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1815,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"9hQ\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"9hQ\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"9hq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1816,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"9hQ\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"9hQ\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"9hq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1817,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"Q5Hq9\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Q5Hq9\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"q5hq9"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1818,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"Q5Hq9\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Q5Hq9\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"q5hq9"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1819,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"9\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"9\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"9"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1820,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"9\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"9\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"9"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1821,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"wzN6\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"wzN6\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"wzn6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1822,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1823,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"wzN6\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"wzN6\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"wzn6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1824,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter \"Zvk5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Zvk5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"zvk5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1825,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter \"Zvk5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Zvk5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"zvk5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1826,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"2\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"2\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1827,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"2\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"2\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1828,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"8\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"8\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"8"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1829,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"8\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"8\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"8"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1830,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"p75ZH\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"p75ZH\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"p75zh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1831,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"p75ZH\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"p75ZH\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"p75zh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1832,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Rhq\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Rhq\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"rhq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1833,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Rhq\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Rhq\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"rhq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1834,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"F\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"F\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"f"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1835,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"F\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"F\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"f"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1836,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"c\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"c\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1837,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"c\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"c\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1838,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1839,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"A6l80\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"A6l80\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"a6l80"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1840,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"A6l80\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"A6l80\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"a6l80"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1841,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter \"A\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"A\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"a"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1842,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter \"A\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"A\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"a"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1843,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"Am8\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Am8\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"am8"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1844,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"Am8\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Am8\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"am8"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1845,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Ad7f3\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Ad7f3\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"ad7f3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1846,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Ad7f3\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Ad7f3\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"ad7f3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1847,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"EqU\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"EqU\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"equ"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1848,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1849,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"EqU\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"EqU\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"equ"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1850,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"x4zQ\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"x4zQ\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"x4zq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1851,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"x4zQ\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"x4zQ\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"x4zq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1852,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"Xvl\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Xvl\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"xvl"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1853,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"Xvl\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Xvl\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"xvl"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1854,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"lm\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"lm\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"lm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1855,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"lm\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"lm\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"lm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1856,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter \"Z\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Z\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"z"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1857,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1858,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter \"Z\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Z\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"z"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1859,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"vh\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"vh\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"vh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1860,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1861,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"vh\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"vh\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"vh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1862,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"B49fs\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"B49fs\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"b49fs"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1863,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"B49fs\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"B49fs\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"b49fs"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1864,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1865,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"H\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"H\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"h"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1866,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"H\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"H\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"h"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1867,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"BMA\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"BMA\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"bma"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1868,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1869,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"BMA\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"BMA\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"bma"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1870,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"nuRE\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"nuRE\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"nure"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1871,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1872,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"nuRE\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"nuRE\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"nure"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1873,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter \"Hc\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Hc\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"hc"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1874,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter \"Hc\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Hc\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"hc"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1875,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"BPy7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"BPy7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"bpy7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1876,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"BPy7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"BPy7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"bpy7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1877,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"qa7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"qa7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"qa7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1878,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"qa7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"qa7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"qa7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1879,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1880,"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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1881,"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":1882,"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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1883,"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":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1884,"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":1885,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1886,"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":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1887,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1888,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click on the \"next\" button.
"},"instruction":{"kind":"string","value":"Click on the \"next\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1889,"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":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1890,"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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1891,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1892,"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":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1893,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1894,"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":"continue"}}},{"rowIdx":1895,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Click on the \"Previous\" button.
"},"instruction":{"kind":"string","value":"Click on the \"Previous\" button. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1896,"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":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1897,"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":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1898,"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":1899,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":18,"numItemsPerPage":100,"numTotalItems":40186,"offset":1800,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODM1NTY1NSwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MzU5MjU1LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.lVRbNInwivbsiQr9MFGfPSI5wQjCvdYlKj_U6t9kL9anVJHaS1oQvwxNMATpv2cpVbcdSoeQDNi-IKX7owXFBQ","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="3"><form id="mturk_form" ref="12"><div id="wrap" ref="6"><div id="area" ref="14"></div></div></form><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="5"><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="2"><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="13"><p ref="19" text="mackay craig nymex hoax."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></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="1"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="4"></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="13"><form id="mturk_form" ref="6"><div id="wrap" ref="8"><div id="area" ref="4"></div></div></form><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="12"><span id="ui-id-2" classes="ui-dialog-title" ref="19"></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="3"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="5" text="picnic advancing gen.. screenwriter. karbala."></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="11"></div><div classes="ui-resizable-handle ui-resizable-w" ref="7"></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="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="18"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="1"></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="11"><form id="mturk_form" ref="3"><div id="wrap" ref="4"><div id="area" ref="6"></div></div></form><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="19"><span id="ui-id-1" classes="ui-dialog-title" ref="2"></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="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="10" text="viable. missouri coffers equipped ancestral encourages 1808."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="7"></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="16"></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="8"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="15"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></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="11"><form id="mturk_form" ref="13"><div id="wrap" ref="9"><div id="area" ref="2"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="19"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="12"><span id="ui-id-2" 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="4"><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="10"><p ref="6" text="side hayes prove resolving."></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="7"></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="5"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="16"></div></div></body>
Close the dialog box by clicking the "x".
click
4
null
stop
Close the dialog box by clicking the "x". <body ref="11"><form id="mturk_form" ref="7"><div id="wrap" ref="13"><div id="area" ref="14"></div></div></form><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="2"><span id="ui-id-3" classes="ui-dialog-title" ref="4"></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="10"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="3"><p ref="15" text="alexandra brewer mare authentic byrd. runways."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></div><div classes="ui-resizable-handle ui-resizable-w" ref="6"></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="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></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"><form id="mturk_form" ref="17"><div id="wrap" ref="7"><div id="area" ref="16"></div></div></form><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="19"><span id="ui-id-1" classes="ui-dialog-title" ref="18"></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="5"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="1"><p ref="4" text="sculptures auction tours intervene resemble spawned. neon."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="14"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></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="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></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="4"><form id="mturk_form" ref="7"><div id="wrap" ref="14"><div id="area" ref="10"></div></div></form><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="1"><span id="ui-id-1" 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="11"><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="2"><p ref="15" text="destination pension expect select proven."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></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="6"></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="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></div></div></body>
Close the dialog box by clicking the "x".
click
11
null
stop
Close the dialog box by clicking the "x". <body ref="1"><form id="mturk_form" ref="9"><div id="wrap" ref="17"><div id="area" ref="13"></div></div></form><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="7"><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="2"><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="18"><p ref="3" text="caught. ltd. luxembourg investigators kms. wandering drain."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="6"></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="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></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="12"><form id="mturk_form" ref="6"><div id="wrap" ref="16"><div id="area" ref="8"></div></div></form><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="11"><span id="ui-id-1" 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="1"><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="14" text="ellen 176 console saga burden salvation hard."></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="15"></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="19"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></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="19"><form id="mturk_form" ref="9"><div id="wrap" ref="17"><div id="area" ref="2"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="12"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-2" 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="18"><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="4"><p ref="7" text="1937 monica island. downgrade strait keane."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></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="3"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="6"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="1"></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="19"><form id="mturk_form" ref="17"><div id="wrap" ref="3"><div id="area" ref="2"></div></div></form><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="12"><span id="ui-id-3" 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="5"><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="7"><p ref="10" text="combined plus. doses schoolchildren folklore."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></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="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="6"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="18"></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="7"><form id="mturk_form" ref="1"><div id="wrap" ref="2"><div id="area" ref="10"></div></div></form><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="8"><span id="ui-id-2" 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="12"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="5"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="3"><p ref="13" text="after hitters sections helmet adriatic."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="6"></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="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></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="11"><form id="mturk_form" ref="8"><div id="wrap" ref="13"><div id="area" ref="14"></div></div></form><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="16"><span id="ui-id-1" classes="ui-dialog-title" ref="2"></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="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="17" text="viable. newport. pak suppose."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="19"></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="7"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="10"></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="16"><form id="mturk_form" ref="6"><div id="wrap" ref="9"><div id="area" ref="8"></div></div></form><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="7"><span id="ui-id-3" classes="ui-dialog-title" ref="18"></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="3"><p ref="12" text="qualifiers brokers teams opportunity tariff."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="14"></div><div classes="ui-resizable-handle ui-resizable-e" ref="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="19"></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="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="13"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></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="16"><form id="mturk_form" ref="13"><div id="wrap" ref="19"><div id="area" ref="14"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="9"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><span id="ui-id-1" classes="ui-dialog-title" ref="2"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="17"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="11"></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="billy island relating perspective lauren. caught."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></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="5"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></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
17
null
stop
{click,2,} Enter "9hQ" into the text field <body ref="3"><form id="mturk_form" ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="6"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "9hQ" into the text field
keydown
2
9hq
stop
{click,2,} Enter "9hQ" into the text field <body ref="3"><form id="mturk_form" ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="6"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "9hQ" into the text field
keydown
2
9hq
stop
{click,5,} Enter "Q5Hq9" into the text field <body ref="4"><form id="mturk_form" ref="7"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "Q5Hq9" into the text field
keydown
5
q5hq9
stop
{click,5,} Enter "Q5Hq9" into the text field <body ref="4"><form id="mturk_form" ref="7"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "Q5Hq9" into the text field
keydown
5
q5hq9
stop
{click,4,} Enter "9" into the text field <body ref="2"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "9" into the text field
keydown
4
9
stop
{click,4,} Enter "9" into the text field <body ref="2"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "9" into the text field
keydown
4
9
stop
{click,3,} Enter "wzN6" into the text field <body ref="2"><form id="mturk_form" ref="6"><div id="wrap" ref="5"><div id="area" ref="7"><div id="form" ref="4"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "wzN6" into the text field
keydown
3
wzn6
stop
click submit <body ref="2"><form id="mturk_form" ref="6"><div id="wrap" ref="5"><div id="area" ref="7"><div id="form" ref="4"><input_text id="tt" ref="3" value="wzn6"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>
click submit
click
1
null
stop
{click,3,} Enter "wzN6" into the text field <body ref="2"><form id="mturk_form" ref="6"><div id="wrap" ref="5"><div id="area" ref="7"><div id="form" ref="4"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "wzN6" into the text field
keydown
3
wzn6
stop
{click,7,} Enter "Zvk5" into the text field <body ref="4"><form id="mturk_form" ref="1"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter "Zvk5" into the text field
keydown
7
zvk5
stop
{click,7,} Enter "Zvk5" into the text field <body ref="4"><form id="mturk_form" ref="1"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter "Zvk5" into the text field
keydown
7
zvk5
stop
{click,5,} Enter "2" into the text field <body ref="3"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="7"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "2" into the text field
keydown
5
2
stop
{click,5,} Enter "2" into the text field <body ref="3"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="7"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "2" into the text field
keydown
5
2
stop
{click,1,} Enter "8" into the text field <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "8" into the text field
keydown
1
8
stop
{click,1,} Enter "8" into the text field <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "8" into the text field
keydown
1
8
stop
{click,6,} Enter "p75ZH" into the text field <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "p75ZH" into the text field
keydown
6
p75zh
stop
{click,6,} Enter "p75ZH" into the text field <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "p75ZH" into the text field
keydown
6
p75zh
stop
{click,4,} Enter "Rhq" into the text field <body ref="7"><form id="mturk_form" ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter "Rhq" into the text field
keydown
4
rhq
stop
{click,4,} Enter "Rhq" into the text field <body ref="7"><form id="mturk_form" ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter "Rhq" into the text field
keydown
4
rhq
stop
{click,6,} Enter "F" into the text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="4"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "F" into the text field
keydown
6
f
stop
{click,6,} Enter "F" into the text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="4"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "F" into the text field
keydown
6
f
stop
{click,3,} Enter "c" into the text field <body ref="6"><form id="mturk_form" ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "c" into the text field
keydown
3
c
stop
{click,3,} Enter "c" into the text field <body ref="6"><form id="mturk_form" ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "c" into the text field
keydown
3
c
stop
click submit <body ref="6"><form id="mturk_form" ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><input_text id="tt" ref="3" value="c"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>
click submit
click
1
null
stop
{click,4,} Enter "A6l80" into the text field <body ref="6"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter "A6l80" into the text field
keydown
4
a6l80
stop
{click,4,} Enter "A6l80" into the text field <body ref="6"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter "A6l80" into the text field
keydown
4
a6l80
stop
{click,8,} Enter "A" into the text field <body ref="3"><div ref="7"><input_button id="chreloadframe" ref="2" value="reload"></input_button></div><form id="mturk_form" ref="6"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="9"><input_text id="tt" ref="8"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "A" into the text field
keydown
8
a
stop
{click,8,} Enter "A" into the text field <body ref="3"><div ref="7"><input_button id="chreloadframe" ref="2" value="reload"></input_button></div><form id="mturk_form" ref="6"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="9"><input_text id="tt" ref="8"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "A" into the text field
keydown
8
a
stop
{click,3,} Enter "Am8" into the text field <body ref="4"><form id="mturk_form" ref="7"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="6"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "Am8" into the text field
keydown
3
am8
stop
{click,3,} Enter "Am8" into the text field <body ref="4"><form id="mturk_form" ref="7"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="6"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "Am8" into the text field
keydown
3
am8
stop
{click,4,} Enter "Ad7f3" into the text field <body ref="6"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Ad7f3" into the text field
keydown
4
ad7f3
stop
{click,4,} Enter "Ad7f3" into the text field <body ref="6"><form id="mturk_form" ref="2"><div id="wrap" ref="7"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Ad7f3" into the text field
keydown
4
ad7f3
stop
{click,4,} Enter "EqU" into the text field <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="7"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "EqU" into the text field
keydown
4
equ
stop
click submit <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="7"><input_text id="tt" ref="4" value="equ"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>
click submit
click
1
null
stop
{click,4,} Enter "EqU" into the text field <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="7"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter "EqU" into the text field
keydown
4
equ
stop
{click,3,} Enter "x4zQ" into the text field <body ref="4"><form id="mturk_form" ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="7"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "x4zQ" into the text field
keydown
3
x4zq
stop
{click,3,} Enter "x4zQ" into the text field <body ref="4"><form id="mturk_form" ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="7"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "x4zQ" into the text field
keydown
3
x4zq
stop
{click,2,} Enter "Xvl" into the text field <body ref="6"><form id="mturk_form" ref="7"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Xvl" into the text field
keydown
2
xvl
stop
{click,2,} Enter "Xvl" into the text field <body ref="6"><form id="mturk_form" ref="7"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Xvl" into the text field
keydown
2
xvl
stop
{click,3,} Enter "lm" into the text field <body ref="6"><form id="mturk_form" ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "lm" into the text field
keydown
3
lm
stop
{click,3,} Enter "lm" into the text field <body ref="6"><form id="mturk_form" ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter "lm" into the text field
keydown
3
lm
stop
{click,7,} Enter "Z" into the text field <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="4"><div id="form" ref="1"><input_text id="tt" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Z" into the text field
keydown
7
z
stop
click submit <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="4"><div id="form" ref="1"><input_text id="tt" ref="7" value="z"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>
click submit
click
5
null
stop
{click,7,} Enter "Z" into the text field <body ref="3"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="4"><div id="form" ref="1"><input_text id="tt" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "Z" into the text field
keydown
7
z
stop
{click,5,} Enter "vh" into the text field <body ref="3"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="6"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "vh" into the text field
keydown
5
vh
stop
click submit <body ref="3"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="6"><input_text id="tt" ref="5" value="vh"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>
click submit
click
4
null
stop
{click,5,} Enter "vh" into the text field <body ref="3"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="6"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "vh" into the text field
keydown
5
vh
stop
{click,5,} Enter "B49fs" into the text field <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="3"><div id="area" ref="7"><div id="form" ref="2"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "B49fs" into the text field
keydown
5
b49fs
stop
{click,5,} Enter "B49fs" into the text field <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="3"><div id="area" ref="7"><div id="form" ref="2"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "B49fs" into the text field
keydown
5
b49fs
stop
click submit <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="3"><div id="area" ref="7"><div id="form" ref="2"><input_text id="tt" ref="5" value="b49fs"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>
click submit
click
4
null
stop
{click,3,} Enter "H" into the text field <body ref="4"><form id="mturk_form" ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div id="form" ref="1"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "H" into the text field
keydown
3
h
stop
{click,3,} Enter "H" into the text field <body ref="4"><form id="mturk_form" ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div id="form" ref="1"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "H" into the text field
keydown
3
h
stop
{click,6,} Enter "BMA" into the text field <body ref="1"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "BMA" into the text field
keydown
6
bma
stop
click submit <body ref="1"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6" value="bma"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>
click submit
click
5
null
stop
{click,6,} Enter "BMA" into the text field <body ref="1"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "BMA" into the text field
keydown
6
bma
stop
{click,1,} Enter "nuRE" into the text field <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "nuRE" into the text field
keydown
1
nure
stop
click submit <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><input_text id="tt" ref="1" value="nure"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>
click submit
click
5
null
stop
{click,1,} Enter "nuRE" into the text field <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter "nuRE" into the text field
keydown
1
nure
stop
{click,9,} Enter "Hc" into the text field <body ref="6"><div ref="3"><input_button id="chreloadframe" ref="1" value="reload"></input_button></div><form id="mturk_form" ref="8"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="5"><input_text id="tt" ref="9"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "Hc" into the text field
keydown
9
hc
stop
{click,9,} Enter "Hc" into the text field <body ref="6"><div ref="3"><input_button id="chreloadframe" ref="1" value="reload"></input_button></div><form id="mturk_form" ref="8"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="5"><input_text id="tt" ref="9"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter "Hc" into the text field
keydown
9
hc
stop
{click,6,} Enter "BPy7" into the text field <body ref="4"><form id="mturk_form" ref="3"><div id="wrap" ref="5"><div id="area" ref="7"><div id="form" ref="1"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter "BPy7" into the text field
keydown
6
bpy7
stop
{click,6,} Enter "BPy7" into the text field <body ref="4"><form id="mturk_form" ref="3"><div id="wrap" ref="5"><div id="area" ref="7"><div id="form" ref="1"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter "BPy7" into the text field
keydown
6
bpy7
stop
{click,1,} Enter "qa7" into the text field <body ref="9"><div ref="5"><input_button id="chreloadframe" ref="3" value="reload"></input_button></div><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="2"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter "qa7" into the text field
keydown
1
qa7
stop
{click,1,} Enter "qa7" into the text field <body ref="9"><div ref="5"><input_button id="chreloadframe" ref="3" value="reload"></input_button></div><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="2"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter "qa7" into the text field
keydown
1
qa7
stop
Click on the "okay" button. <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="10"><div id="area" ref="5"><div ref="3" text="greet hayes worldwide"></div><button ref="8" text="okay"></button><button ref="2" text="ok"></button><input_text ref="1"></input_text><div ref="7" text="quito danes fran"></div><input_text ref="4"></input_text></div></div></form></body>
Click on the "okay" button.
click
8
null
stop
Click on the "Next" button. <body ref="8"><form id="mturk_form" ref="9"><div id="wrap" ref="6"><div id="area" ref="4"><span ref="10" text="screenwriter tasmania reluctant:"></span><input_text ref="7"></input_text><input_text ref="3"></input_text><button ref="2" text="next"></button><div ref="1" text="spilled performs reluctant"></div><input_text ref="11"></input_text><div ref="5" text="resentment stages svetlana"></div></div></div></form></body>
Click on the "Next" button.
click
2
null
stop
Click on the "no" button. <body ref="9"><form id="mturk_form" ref="7"><div id="wrap" ref="13"><div id="area" ref="3"><input_text ref="8"></input_text><br ref="5"></br><input_text ref="2"></input_text><br ref="4"></br><button ref="6" text="no"></button><button ref="12" text="cancel"></button><br ref="1"></br><button ref="10" text="cancel"></button><div ref="11" text="powerless b.a. perspective"></div></div></div></form></body>
Click on the "no" button.
click
6
null
stop
Click on the "ok" button. <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="7"><div id="area" ref="8"><button ref="3" text="previous"></button><button ref="2" text="ok"></button><div ref="4" text="scrapped jumped bavaria"></div><button ref="1" text="submit"></button><div ref="5" text="84 chairman swine"></div><div ref="9" text="emir saga targets"></div></div></div></form></body>
Click on the "ok" button.
click
2
null
stop
Click on the "yes" button. <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="4"><div id="area" ref="5"><div ref="2" text="gt teams freed"></div><button ref="11" text="yes"></button><div ref="3" text="solomon attracts ken"></div><span ref="12" text="zanzibar boosting armour:"></span><input_text ref="9"></input_text><span ref="8" text="barriers begin anticipation:"></span><input_text ref="1"></input_text><input_text ref="7"></input_text></div></div></form></body>
Click on the "yes" button.
click
11
null
stop
Click on the "cancel" button. <body ref="9"><form id="mturk_form" ref="11"><div id="wrap" ref="2"><div id="area" ref="5"><span ref="1" text="newport huang oakland:"></span><input_text ref="4"></input_text><div ref="8" text="1962 inspired depot"></div><div ref="10" text="prevalent cheat arrives"></div><button ref="6" text="cancel"></button><input_text ref="7"></input_text><input_text ref="3"></input_text></div></div></form></body>
Click on the "cancel" button.
click
6
null
stop
Click on the "Ok" button. <body ref="11"><form id="mturk_form" ref="1"><div id="wrap" ref="4"><div id="area" ref="8"><div ref="7" text="injured symposium caught"></div><div ref="2" text="holds 6.4 cultivate"></div><button ref="3" text="ok"></button><input_text ref="6"></input_text><div ref="5" text="recep suspending spurred"></div><span ref="10" text="allow scots stanley:"></span><input_text ref="9"></input_text></div></div></form></body>
Click on the "Ok" button.
click
3
null
stop
Click on the "previous" button. <body ref="8"><form id="mturk_form" ref="10"><div id="wrap" ref="1"><div id="area" ref="9"><button ref="7" text="submit"></button><button ref="3" text="submit"></button><input_text ref="4"></input_text><div ref="2" text="telling commentator surprising"></div><button ref="5" text="previous"></button><span ref="6" text="garner models nader:"></span><input_text ref="11"></input_text></div></div></form></body>
Click on the "previous" button.
click
5
null
stop
Click on the "next" button. <body ref="2"><form id="mturk_form" ref="12"><div id="wrap" ref="7"><div id="area" ref="5"><span ref="10" text="let hires panels:"></span><input_text ref="3"></input_text><button ref="9" text="ok"></button><button ref="8" text="next"></button><span ref="11" text="holds 1937 decreased:"></span><input_text ref="1"></input_text><input_text ref="6"></input_text><div ref="4" text="sparsely freeway sheikh"></div></div></div></form></body>,
Click on the "next" button.
click
3
null
continue
{click,3,} Click on the "next" button. <body ref="2"><form id="mturk_form" ref="12"><div id="wrap" ref="7"><div id="area" ref="5"><span ref="10" text="let hires panels:"></span><input_text ref="3"></input_text><button ref="9" text="ok"></button><button ref="8" text="next"></button><span ref="11" text="holds 1937 decreased:"></span><input_text ref="1"></input_text><input_text ref="6"></input_text><div ref="4" text="sparsely freeway sheikh"></div></div></div></form></body>
Click on the "next" button.
click
8
null
stop
Click on the "No" button. <body ref="7"><form id="mturk_form" ref="9"><div id="wrap" ref="5"><div id="area" ref="1"><button ref="11" text="okay"></button><button ref="8" text="next"></button><span ref="10" text="bounced converting pakistani:"></span><input_text ref="2"></input_text><input_text ref="3"></input_text><button ref="4" text="no"></button><div ref="6" text="relieve atoms orange"></div></div></div></form></body>
Click on the "No" button.
click
4
null
stop
Click on the "previous" button. <body ref="10"><form id="mturk_form" ref="9"><div id="wrap" ref="4"><div id="area" ref="3"><span ref="8" text="delta batsmen reflecting:"></span><input_text ref="5"></input_text><button ref="12" text="previous"></button><button ref="2" text="previous"></button><div ref="6" text="villeneuve philadelphia countrymen"></div><span ref="11" text="monica uniting bo:"></span><input_text ref="13"></input_text><span ref="7" text="203 ot walters:"></span><input_text ref="1"></input_text></div></div></form></body>
Click on the "previous" button.
click
2
null
stop
Click on the "ok" button. <body ref="2"><form id="mturk_form" ref="8"><div id="wrap" ref="5"><div id="area" ref="7"><input_text ref="6"></input_text><span ref="1" text="poker mortgage 1868:"></span><input_text ref="10"></input_text><button ref="11" text="previous"></button><button ref="9" text="okay"></button><button ref="3" text="ok"></button><button ref="4" text="yes"></button></div></div></form></body>
Click on the "ok" button.
click
3
null
stop
Click on the "previous" button. <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="9"><div id="area" ref="1"><div ref="8" text="depressing rainbow countrymen"></div><input_text ref="4"></input_text><div ref="10" text="unharmed benz hoax"></div><div ref="6" text="inception finest folklore"></div><input_text ref="3"></input_text><button ref="7" text="previous"></button></div></div></form></body>
Click on the "previous" button.
click
7
null
stop
Click on the "yes" button. <body ref="10"><form id="mturk_form" ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><div ref="2" text="lowering fury bowl"></div><input_text ref="9"></input_text><input_text ref="7"></input_text><button ref="8" text="yes"></button><div ref="5" text="classrooms spilled medics"></div><div ref="6" text="losers defending colin"></div></div></div></form></body>
Click on the "yes" button.
click
8
null
stop
Click on the "Previous" button. <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="4"><div id="area" ref="5"><span ref="2" text="beneficiaries kirby dar:"></span><input_text ref="8"></input_text><span ref="9" text="universal reprisals o\malley:"></span><input_text ref="1"></input_text><input_text ref="12"></input_text><span ref="7" text="samsung enhancing inclined:"></span><input_text ref="3"></input_text><button ref="11" text="previous"></button><div ref="6" text="hard injured olga"></div></div></div></form></body>,
Click on the "Previous" button.
click
8
null
continue
{click,8,} Click on the "Previous" button. <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="4"><div id="area" ref="5"><span ref="2" text="beneficiaries kirby dar:"></span><input_text ref="8"></input_text><span ref="9" text="universal reprisals o\malley:"></span><input_text ref="1"></input_text><input_text ref="12"></input_text><span ref="7" text="samsung enhancing inclined:"></span><input_text ref="3"></input_text><button ref="11" text="previous"></button><div ref="6" text="hard injured olga"></div></div></div></form></body>
Click on the "Previous" button.
click
11
null
stop
Click on the "okay" button. <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="5"><div id="area" ref="6"><input_text ref="9"></input_text><div ref="7" text="hospitalized hoax reid"></div><button ref="8" text="ok"></button><div ref="10" text="lace dispersed protracted"></div><button ref="1" text="okay"></button><div ref="3" text="will nazarbayev cruise"></div></div></div></form></body>
Click on the "okay" button.
click
1
null
stop
Click on the "Next" button. <body ref="9"><form id="mturk_form" ref="10"><div id="wrap" ref="1"><div id="area" ref="5"><div ref="7" text="tract instincts litvinenko"></div><div ref="4" text="peripheral harsh watershed"></div><button ref="6" text="next"></button><div ref="8" text="husbands guided eager"></div><span ref="2" text="allow jen authoritarian:"></span><input_text ref="3"></input_text><div ref="9" text="harshly peter wrote"></div></div></div></form></body>
Click on the "Next" button.
click
6
null
stop
Click on the "Cancel" button. <body ref="2"><form id="mturk_form" ref="7"><div id="wrap" ref="8"><div id="area" ref="6"><input_text ref="1"></input_text><input_text ref="5"></input_text><button ref="10" text="next"></button><input_text ref="9"></input_text><button ref="4" text="ok"></button><button ref="3" text="cancel"></button></div></div></form></body>
Click on the "Cancel" button.
click
3
null
stop
Click on the "no" button. <body ref="10"><form id="mturk_form" ref="3"><div id="wrap" ref="9"><div id="area" ref="6"><input_text ref="7"></input_text><input_text ref="4"></input_text><input_text ref="2"></input_text><button ref="5" text="yes"></button><button ref="8" text="no"></button><input_text ref="1"></input_text></div></div></form></body>
Click on the "no" button.
click
8
null
stop