{ // 获取包含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 !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转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 !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; 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, 'OCR模型免费转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":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":401,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":402,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":403,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":404,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":405,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":406,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":407,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":408,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":409,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":410,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":411,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":412,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":413,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":414,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":415,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":416,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":417,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":418,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":419,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":420,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":421,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":422,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":423,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":424,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":425,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":426,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":427,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":428,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":429,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":430,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":431,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":432,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":433,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":434,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":435,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":436,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":437,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":438,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":439,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":440,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":441,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":442,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":443,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":444,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":445,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":446,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":447,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":448,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":449,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":450,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":451,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":452,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":453,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":454,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":455,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":456,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":457,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":458,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":459,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE, then click button TWO.
, "},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":460,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Click button ONE, then click button TWO.
"},"instruction":{"kind":"string","value":"Click button ONE, then click button TWO. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":461,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the username \"emile\"

, "},"instruction":{"kind":"string","value":"Enter the username \"emile\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"emile"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":462,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"Kh\"

, "},"instruction":{"kind":"string","value":"Enter the password \"Kh\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"kh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":463,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":464,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the username \"joye\"

, "},"instruction":{"kind":"string","value":"Enter the username \"joye\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"joye"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":465,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"5s\"

, "},"instruction":{"kind":"string","value":"Enter the password \"5s\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"5s"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":466,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":467,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the username \"renda\"

, "},"instruction":{"kind":"string","value":"Enter the username \"renda\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"renda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":468,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"cIFm\"

, "},"instruction":{"kind":"string","value":"Enter the password \"cIFm\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"cifm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":469,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":470,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the username \"lyda\"

, "},"instruction":{"kind":"string","value":"Enter the username \"lyda\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"lyda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":471,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"ESE\"

, "},"instruction":{"kind":"string","value":"Enter the password \"ESE\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"ese"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":472,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":473,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter the username \"annis\"

, "},"instruction":{"kind":"string","value":"Enter the username \"annis\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"annis"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":474,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"nQ3lm\"

, "},"instruction":{"kind":"string","value":"Enter the password \"nQ3lm\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"nq3lm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":475,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":476,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the username \"alan\"

, "},"instruction":{"kind":"string","value":"Enter the username \"alan\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"alan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":477,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"Ut\"

, "},"instruction":{"kind":"string","value":"Enter the password \"Ut\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"ut"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":478,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":479,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the username \"vanda\"

, "},"instruction":{"kind":"string","value":"Enter the username \"vanda\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"vanda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":480,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"Djb\"

, "},"instruction":{"kind":"string","value":"Enter the password \"Djb\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"djb"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":481,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":482,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the username \"dolores\"

, "},"instruction":{"kind":"string","value":"Enter the username \"dolores\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"dolores"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":483,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"bx\"

, "},"instruction":{"kind":"string","value":"Enter the password \"bx\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"bx"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":484,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":485,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the username \"nathalie\"

, "},"instruction":{"kind":"string","value":"Enter the username \"nathalie\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"nathalie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":486,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"ekdy\"

, "},"instruction":{"kind":"string","value":"Enter the password \"ekdy\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"ekdy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":487,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":488,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter the username \"kanesha\"

, "},"instruction":{"kind":"string","value":"Enter the username \"kanesha\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"kanesha"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":489,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"wqW\"

, "},"instruction":{"kind":"string","value":"Enter the password \"wqW\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"wqw"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":490,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":491,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the username \"cristin\"

, "},"instruction":{"kind":"string","value":"Enter the username \"cristin\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"cristin"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":492,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"nh\"

, "},"instruction":{"kind":"string","value":"Enter the password \"nh\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"nh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":493,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":494,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the username \"briana\"

, "},"instruction":{"kind":"string","value":"Enter the username \"briana\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"briana"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":495,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"ZXtfR\"

, "},"instruction":{"kind":"string","value":"Enter the password \"ZXtfR\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"zxtfr"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":496,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":497,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the username \"myron\"

, "},"instruction":{"kind":"string","value":"Enter the username \"myron\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"myron"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":498,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"p4\"

, "},"instruction":{"kind":"string","value":"Enter the password \"p4\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"p4"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":499,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":4,"numItemsPerPage":100,"numTotalItems":40186,"offset":400,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjIxMTI1Niwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2MjE0ODU2LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.IbpdYiRSgz3NlK_W2MAkNbyTQ3dFGADSnYTXTygTfvrld3AWr8MZHaqsG4pIjwpYqsRv1V8CJ0vIHgRhN-bLDA","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
{click,4,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="3"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
3
null
continue
{click,3,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="3"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="3"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="5"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="5"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="5"><div id="area" ref="1"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
3
null
continue
{click,3,} Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="5"><div id="area" ref="1"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="3"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
2
null
continue
{click,2,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="3"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
4
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
3
null
continue
{click,3,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
3
null
continue
{click,3,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
4
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="4"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
2
null
continue
{click,2,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="4"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
4
null
continue
{click,4,} Click button ONE, then click button TWO. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="3"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
5
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="3"><div id="area" ref="4"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
1
null
continue
{click,1,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="3"><div id="area" ref="4"><button id="subbtn" ref="1" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
2
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
5
null
continue
{click,5,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
3
null
continue
{click,3,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="4"><div id="area" ref="2"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
1
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="3"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
2
null
continue
{click,2,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="3"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
4
null
stop
Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
2
null
continue
{click,2,} Click button ONE, then click button TWO. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="5"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>,
Click button ONE, then click button TWO.
click
2
null
continue
{click,2,} Click button ONE, then click button TWO. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="5"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE, then click button TWO.
click
3
null
stop
{click,11,} Enter the username "emile" <body ref="4"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="2"><p ref="8"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the username "emile"
keydown
11
emile
stop
Enter the password "Kh" <body ref="4"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="2"><p ref="8"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11" value="emile"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the password "Kh"
keydown
7
kh
stop
press login <body ref="4"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="2"><p ref="8"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11" value="emile"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="7" value="kh"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>
press login
click
3
null
stop
{click,6,} Enter the username "joye" <body ref="11"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="1"><p ref="4"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the username "joye"
keydown
6
joye
stop
Enter the password "5s" <body ref="11"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="1"><p ref="4"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6" value="joye"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the password "5s"
keydown
3
5s
stop
press login <body ref="11"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="1"><p ref="4"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6" value="joye"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="3" value="5s"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>
press login
click
7
null
stop
{click,11,} Enter the username "renda" <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><p ref="10"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="11"></input_text></p><p ref="6"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the username "renda"
keydown
11
renda
stop
Enter the password "cIFm" <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><p ref="10"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="11" value="renda"></input_text></p><p ref="6"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the password "cIFm"
keydown
5
cifm
stop
press login <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="7"><p ref="10"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="11" value="renda"></input_text></p><p ref="6"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="5" value="cifm"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>
press login
click
3
null
stop
{click,1,} Enter the username "lyda" <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="10"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the username "lyda"
keydown
1
lyda
stop
Enter the password "ESE" <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1" value="lyda"></input_text></p><p ref="10"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the password "ESE"
keydown
4
ese
stop
press login <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1" value="lyda"></input_text></p><p ref="10"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4" value="ese"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>
press login
click
7
null
stop
{click,8,} Enter the username "annis" <body ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="8"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the username "annis"
keydown
8
annis
stop
Enter the password "nQ3lm" <body ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="8" value="annis"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the password "nQ3lm"
keydown
2
nq3lm
stop
press login <body ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="8" value="annis"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="2" value="nq3lm"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>
press login
click
5
null
stop
{click,1,} Enter the username "alan" <body ref="7"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="11"><p ref="8"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the username "alan"
keydown
1
alan
stop
Enter the password "Ut" <body ref="7"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="11"><p ref="8"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1" value="alan"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the password "Ut"
keydown
10
ut
stop
press login <body ref="7"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="11"><p ref="8"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1" value="alan"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10" value="ut"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>
press login
click
2
null
stop
{click,9,} Enter the username "vanda" <body ref="6"><div id="wrap" ref="11"><div id="area" ref="5"><div id="form" ref="3"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="9"></input_text></p><p ref="8"><label classes="bold" ref="2" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>,
Enter the username "vanda"
keydown
9
vanda
stop
{click,10,} Enter the password "Djb" <body ref="6"><div id="wrap" ref="11"><div id="area" ref="5"><div id="form" ref="3"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="9" value="vanda"></input_text></p><p ref="8"><label classes="bold" ref="2" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>,
Enter the password "Djb"
keydown
10
djb
stop
press login <body ref="6"><div id="wrap" ref="11"><div id="area" ref="5"><div id="form" ref="3"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="9" value="vanda"></input_text></p><p ref="8"><label classes="bold" ref="2" text="password"></label><input_password id="password" ref="10" value="djb"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>
press login
click
1
null
stop
{click,7,} Enter the username "dolores" <body ref="6"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="7"></input_text></p><p ref="11"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>,
Enter the username "dolores"
keydown
7
dolores
stop
{click,10,} Enter the password "bx" <body ref="6"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="7" value="dolores"></input_text></p><p ref="11"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>,
Enter the password "bx"
keydown
10
bx
stop
press login <body ref="6"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="7" value="dolores"></input_text></p><p ref="11"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10" value="bx"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>
press login
click
8
null
stop
{click,1,} Enter the username "nathalie" <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="11"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the username "nathalie"
keydown
1
nathalie
stop
Enter the password "ekdy" <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1" value="nathalie"></input_text></p><p ref="11"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the password "ekdy"
keydown
8
ekdy
stop
press login <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1" value="nathalie"></input_text></p><p ref="11"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="8" value="ekdy"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>
press login
click
3
null
stop
{click,8,} Enter the username "kanesha" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8"></input_text></p><p ref="4"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the username "kanesha"
keydown
8
kanesha
stop
Enter the password "wqW" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8" value="kanesha"></input_text></p><p ref="4"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the password "wqW"
keydown
11
wqw
stop
press login <body ref="5"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8" value="kanesha"></input_text></p><p ref="4"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11" value="wqw"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>
press login
click
6
null
stop
{click,3,} Enter the username "cristin" <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="4"><p ref="5"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="3"></input_text></p><p ref="1"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the username "cristin"
keydown
3
cristin
stop
Enter the password "nh" <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="4"><p ref="5"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="3" value="cristin"></input_text></p><p ref="1"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the password "nh"
keydown
10
nh
stop
press login <body ref="11"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="4"><p ref="5"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="3" value="cristin"></input_text></p><p ref="1"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="10" value="nh"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>
press login
click
2
null
stop
{click,10,} Enter the username "briana" <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>,
Enter the username "briana"
keydown
10
briana
stop
Enter the password "ZXtfR" <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10" value="briana"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>,
Enter the password "ZXtfR"
keydown
4
zxtfr
stop
press login <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="6"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10" value="briana"></input_text></p><p ref="9"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="4" value="zxtfr"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="login"></button></div></div></div></body>
press login
click
1
null
stop
{click,2,} Enter the username "myron" <body ref="10"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="9"><p ref="7"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="2"></input_text></p><p ref="3"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the username "myron"
keydown
2
myron
stop
Enter the password "p4" <body ref="10"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="9"><p ref="7"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="2" value="myron"></input_text></p><p ref="3"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the password "p4"
keydown
8
p4
stop
press login <body ref="10"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="9"><p ref="7"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="2" value="myron"></input_text></p><p ref="3"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="8" value="p4"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>
press login
click
6
null
stop