{ // 获取包含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. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":801,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":802,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":803,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":804,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":805,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":806,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":807,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":808,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":809,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":810,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":811,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":812,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":813,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":814,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":815,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":816,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":817,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":818,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":819,"cells":{"history_episodes":{"kind":"string","value":" Click button ONE.
"},"instruction":{"kind":"string","value":"Click button ONE. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":820,"cells":{"history_episodes":{"kind":"string","value":" Guess the number between 0-9
, "},"instruction":{"kind":"string","value":"Guess the number between 0-9"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":821,"cells":{"history_episodes":{"kind":"string","value":" Guess the number between 0-9
, "},"instruction":{"kind":"string","value":"Guess the number between 0-9"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":822,"cells":{"history_episodes":{"kind":"string","value":" Guess the number between 0-9
, "},"instruction":{"kind":"string","value":"Guess the number between 0-9"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":823,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":824,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":825,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":826,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":827,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":828,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":829,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":830,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":831,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":832,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":833,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":834,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":835,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":836,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":837,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":838,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":839,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":840,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":841,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":842,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":843,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":844,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":845,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":846,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":847,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":848,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":849,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":850,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":851,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":852,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":853,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":854,"cells":{"history_episodes":{"kind":"string","value":" Click the button that best describes the figure below.
"},"instruction":{"kind":"string","value":"Click the button that best describes the figure below. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":855,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the username \"vanda\"

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

, "},"instruction":{"kind":"string","value":"Enter the password \"SCFM\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"scfm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":857,"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":858,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the username \"annis\"

, "},"instruction":{"kind":"string","value":"Enter the username \"annis\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"annis"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":859,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"cYzb1\"

, "},"instruction":{"kind":"string","value":"Enter the password \"cYzb1\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"cyzb1"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":860,"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":861,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the username \"olin\"

, "},"instruction":{"kind":"string","value":"Enter the username \"olin\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"olin"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":862,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"39YGG\"

, "},"instruction":{"kind":"string","value":"Enter the password \"39YGG\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"39ygg"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":863,"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":864,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the username \"karrie\"

, "},"instruction":{"kind":"string","value":"Enter the username \"karrie\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"karrie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":865,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"A9x\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"donovan\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"donovan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":868,"cells":{"history_episodes":{"kind":"string","value":"{click,9,}{click,1,} Enter the password \"0dly\"

, "},"instruction":{"kind":"string","value":"Enter the password \"0dly\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"0dly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":869,"cells":{"history_episodes":{"kind":"string","value":" press login

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

, "},"instruction":{"kind":"string","value":"Enter the username \"dolores\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"dolores"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":871,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"nc\"

, "},"instruction":{"kind":"string","value":"Enter the password \"nc\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"nc"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":872,"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":873,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the username \"donovan\"

, "},"instruction":{"kind":"string","value":"Enter the username \"donovan\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"donovan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":874,"cells":{"history_episodes":{"kind":"string","value":"{click,11,}{click,5,} Enter the password \"za6C\"

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

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":876,"cells":{"history_episodes":{"kind":"string","value":"{click,1,}{click,6,} Enter the username \"cierra\"

, "},"instruction":{"kind":"string","value":"Enter the username \"cierra\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"cierra"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":877,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"zp\"

, "},"instruction":{"kind":"string","value":"Enter the password \"zp\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"zp"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":878,"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":879,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the username \"olin\"

, "},"instruction":{"kind":"string","value":"Enter the username \"olin\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"olin"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":880,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"RhK\"

, "},"instruction":{"kind":"string","value":"Enter the password \"RhK\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"rhk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":881,"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":882,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter the username \"enola\"

, "},"instruction":{"kind":"string","value":"Enter the username \"enola\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"enola"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":883,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"WQ8F\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"kenda\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"kenda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":886,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"8e\"

, "},"instruction":{"kind":"string","value":"Enter the password \"8e\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"8e"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":887,"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":888,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the username \"jess\"

, "},"instruction":{"kind":"string","value":"Enter the username \"jess\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"jess"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":889,"cells":{"history_episodes":{"kind":"string","value":"{click,10,}{click,4,} Enter the password \"z2\"

, "},"instruction":{"kind":"string","value":"Enter the password \"z2\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"z2"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":890,"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":891,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the username \"truman\"

, "},"instruction":{"kind":"string","value":"Enter the username \"truman\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"truman"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":892,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"vhpY\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"renda\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"renda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":895,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"6y\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"juan\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"juan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":898,"cells":{"history_episodes":{"kind":"string","value":"{click,2,}{click,1,} Enter the password \"IX\"

, "},"instruction":{"kind":"string","value":"Enter the password \"IX\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"ix"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":899,"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"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":8,"numItemsPerPage":100,"numTotalItems":40186,"offset":800,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjMzMDExMCwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2MzMzNzEwLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.YHSHAXROrljLd5hN5T6TZylodLG8f3WVHU9jXiyRO-3CaM4RGv0Frr1wovVrOEN4Wv63W9LY_bNEVkVsQTwiCg","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 button ONE. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE.
click
4
null
stop
Click button ONE. <body ref="4"><div id="wrap" ref="1"><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.
click
5
null
stop
Click button ONE. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="2"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE.
click
4
null
stop
Click button ONE. <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.
click
4
null
stop
Click button ONE. <body ref="1"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="3" text="two"></button></div></div></body>
Click button ONE.
click
5
null
stop
Click button ONE. <body ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><button id="subbtn" ref="4" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE.
click
4
null
stop
Click button ONE. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE.
click
5
null
stop
Click button ONE. <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.
click
3
null
stop
Click button ONE. <body ref="2"><div id="wrap" ref="4"><div id="area" ref="1"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE.
click
3
null
stop
Click button ONE. <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="5" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE.
click
5
null
stop
Click button ONE. <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.
click
1
null
stop
Click button ONE. <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="4" text="two"></button></div></div></body>
Click button ONE.
click
2
null
stop
Click button ONE. <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE.
click
3
null
stop
Click button ONE. <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.
click
4
null
stop
Click button ONE. <body ref="1"><div id="wrap" ref="2"><div id="area" ref="4"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="5" text="two"></button></div></div></body>
Click button ONE.
click
3
null
stop
Click button ONE. <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.
click
4
null
stop
Click button ONE. <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.
click
2
null
stop
Click button ONE. <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"><button id="subbtn" ref="2" text="one"></button><button id="subbtn2" ref="1" text="two"></button></div></div></body>
Click button ONE.
click
2
null
stop
Click button ONE. <body ref="4"><div id="wrap" ref="5"><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.
click
1
null
stop
Click button ONE. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="5"><button id="subbtn" ref="3" text="one"></button><button id="subbtn2" ref="2" text="two"></button></div></div></body>
Click button ONE.
click
3
null
stop
Guess the number between 0-9 <body ref="5"><div id="wrap" ref="4"><div id="area" ref="7"><div id="feedback" ref="2"><div id="waiting" ref="8" text="waiting for your guess..."></div></div><form ref="1"><input_number id="tt" ref="3"></input_number><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></form></div></div></body>,
Guess the number between 0-9
click
3
null
stop
Guess the number between 0-9 <body ref="4"><div id="wrap" ref="1"><div id="area" ref="2"><div id="feedback" ref="3"><div id="waiting" ref="5" text="waiting for your guess..."></div></div><form ref="7"><input_number id="tt" ref="8"></input_number><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></form></div></div></body>,
Guess the number between 0-9
click
8
null
stop
Guess the number between 0-9 <body ref="4"><div id="wrap" ref="7"><div id="area" ref="3"><div id="feedback" ref="1"><div id="waiting" ref="5" text="waiting for your guess..."></div></div><form ref="2"><input_number id="tt" ref="8"></input_number><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></form></div></div></body>,
Guess the number between 0-9
click
8
null
stop
Click the button that best describes the figure below. <body ref="6"><div id="wrap" ref="11"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="3"><text classes="{}" ref="7" text="5"></text></svg><div id="area-buttons" ref="5"><button ref="9" text="rectangle"></button><button ref="10" text="circle"></button><button ref="2" text="triangle"></button><button ref="4" text="letter"></button><button ref="8" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="11"><div id="wrap" ref="2"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="9"><text classes="{}" ref="3" text="e"></text></svg><div id="area-buttons" ref="5"><button ref="10" text="rectangle"></button><button ref="6" text="circle"></button><button ref="4" text="triangle"></button><button ref="7" text="letter"></button><button ref="8" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
7
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="11"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="4"><text classes="{}" ref="9" text="4"></text></svg><div id="area-buttons" ref="10"><button ref="8" text="rectangle"></button><button ref="3" text="circle"></button><button ref="5" text="triangle"></button><button ref="6" text="letter"></button><button ref="2" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
2
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="5"><svg id="area_svg" classes="{}" ref="2"><text classes="{}" ref="10" text="2"></text></svg><div id="area-buttons" ref="6"><button ref="9" text="rectangle"></button><button ref="3" text="circle"></button><button ref="8" text="triangle"></button><button ref="11" text="letter"></button><button ref="7" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
7
null
stop
Click the button that best describes the figure below. <body ref="11"><div id="wrap" ref="7"><div id="area" ref="3"><svg id="area_svg" classes="{}" ref="1"><text classes="{}" ref="6" text="5"></text></svg><div id="area-buttons" ref="5"><button ref="4" text="rectangle"></button><button ref="8" text="circle"></button><button ref="2" text="triangle"></button><button ref="9" text="letter"></button><button ref="10" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
10
null
stop
Click the button that best describes the figure below. <body ref="8"><div id="wrap" ref="4"><div id="area" ref="10"><svg id="area_svg" classes="{}" ref="7"><text classes="{}" ref="9" text="a"></text></svg><div id="area-buttons" ref="11"><button ref="3" text="rectangle"></button><button ref="5" text="circle"></button><button ref="2" text="triangle"></button><button ref="6" text="letter"></button><button ref="1" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
6
null
stop
Click the button that best describes the figure below. <body ref="4"><div id="wrap" ref="5"><div id="area" ref="10"><svg id="area_svg" classes="{}" ref="11"><polygon classes="{}" ref="1"></polygon></svg><div id="area-buttons" ref="8"><button ref="3" text="rectangle"></button><button ref="6" text="circle"></button><button ref="7" text="triangle"></button><button ref="9" text="letter"></button><button ref="2" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
7
null
stop
Click the button that best describes the figure below. <body ref="5"><div id="wrap" ref="4"><div id="area" ref="9"><svg id="area_svg" classes="{}" ref="10"><polygon classes="{}" ref="7"></polygon></svg><div id="area-buttons" ref="2"><button ref="3" text="rectangle"></button><button ref="8" text="circle"></button><button ref="1" text="triangle"></button><button ref="6" text="letter"></button><button ref="11" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
1
null
stop
Click the button that best describes the figure below. <body ref="10"><div id="wrap" ref="8"><div id="area" ref="3"><svg id="area_svg" classes="{}" ref="11"><polygon classes="{}" ref="1"></polygon></svg><div id="area-buttons" ref="7"><button ref="2" text="rectangle"></button><button ref="4" text="circle"></button><button ref="5" text="triangle"></button><button ref="6" text="letter"></button><button ref="9" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
5
null
stop
Click the button that best describes the figure below. <body ref="10"><div id="wrap" ref="1"><div id="area" ref="3"><svg id="area_svg" classes="{}" ref="2"><text classes="{}" ref="4" text="8"></text></svg><div id="area-buttons" ref="5"><button ref="9" text="rectangle"></button><button ref="11" text="circle"></button><button ref="7" text="triangle"></button><button ref="8" text="letter"></button><button ref="6" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
6
null
stop
Click the button that best describes the figure below. <body ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><svg id="area_svg" classes="{}" ref="1"><circle classes="{}" ref="3"></circle></svg><div id="area-buttons" ref="11"><button ref="8" text="rectangle"></button><button ref="6" text="circle"></button><button ref="4" text="triangle"></button><button ref="10" text="letter"></button><button ref="9" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
6
null
stop
Click the button that best describes the figure below. <body ref="3"><div id="wrap" ref="7"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="6"><text classes="{}" ref="10" text="0"></text></svg><div id="area-buttons" ref="4"><button ref="2" text="rectangle"></button><button ref="5" text="circle"></button><button ref="8" text="triangle"></button><button ref="9" text="letter"></button><button ref="11" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
11
null
stop
Click the button that best describes the figure below. <body ref="8"><div id="wrap" ref="4"><div id="area" ref="5"><svg id="area_svg" classes="{}" ref="11"><text classes="{}" ref="2" text="1"></text></svg><div id="area-buttons" ref="10"><button ref="9" text="rectangle"></button><button ref="7" text="circle"></button><button ref="3" text="triangle"></button><button ref="6" text="letter"></button><button ref="1" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
1
null
stop
Click the button that best describes the figure below. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="10"><rect classes="{}" ref="6"></rect></svg><div id="area-buttons" ref="11"><button ref="8" text="rectangle"></button><button ref="2" text="circle"></button><button ref="5" text="triangle"></button><button ref="9" text="letter"></button><button ref="1" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="8"><div id="wrap" ref="1"><div id="area" ref="5"><svg id="area_svg" classes="{}" ref="3"><text classes="{}" ref="6" text="q"></text></svg><div id="area-buttons" ref="4"><button ref="7" text="rectangle"></button><button ref="11" text="circle"></button><button ref="10" text="triangle"></button><button ref="2" text="letter"></button><button ref="9" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
2
null
stop
Click the button that best describes the figure below. <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="10"><rect classes="{}" ref="2"></rect></svg><div id="area-buttons" ref="8"><button ref="3" text="rectangle"></button><button ref="9" text="circle"></button><button ref="11" text="triangle"></button><button ref="5" text="letter"></button><button ref="7" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
3
null
stop
Click the button that best describes the figure below. <body ref="2"><div id="wrap" ref="6"><div id="area" ref="5"><svg id="area_svg" classes="{}" ref="9"><text classes="{}" ref="8" text="r"></text></svg><div id="area-buttons" ref="1"><button ref="3" text="rectangle"></button><button ref="4" text="circle"></button><button ref="7" text="triangle"></button><button ref="11" text="letter"></button><button ref="10" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
11
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="2"><svg id="area_svg" classes="{}" ref="7"><polygon classes="{}" ref="4"></polygon></svg><div id="area-buttons" ref="11"><button ref="3" text="rectangle"></button><button ref="6" text="circle"></button><button ref="8" text="triangle"></button><button ref="10" text="letter"></button><button ref="9" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="8"><div id="wrap" ref="5"><div id="area" ref="2"><svg id="area_svg" classes="{}" ref="11"><circle classes="{}" ref="10"></circle></svg><div id="area-buttons" ref="9"><button ref="1" text="rectangle"></button><button ref="6" text="circle"></button><button ref="4" text="triangle"></button><button ref="3" text="letter"></button><button ref="7" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
6
null
stop
Click the button that best describes the figure below. <body ref="7"><div id="wrap" ref="2"><div id="area" ref="3"><svg id="area_svg" classes="{}" ref="10"><rect classes="{}" ref="6"></rect></svg><div id="area-buttons" ref="8"><button ref="1" text="rectangle"></button><button ref="5" text="circle"></button><button ref="11" text="triangle"></button><button ref="4" text="letter"></button><button ref="9" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
1
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="4"><div id="area" ref="9"><svg id="area_svg" classes="{}" ref="10"><text classes="{}" ref="3" text="n"></text></svg><div id="area-buttons" ref="7"><button ref="5" text="rectangle"></button><button ref="8" text="circle"></button><button ref="6" text="triangle"></button><button ref="11" text="letter"></button><button ref="2" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
11
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="5"><div id="area" ref="2"><svg id="area_svg" classes="{}" ref="3"><text classes="{}" ref="4" text="f"></text></svg><div id="area-buttons" ref="7"><button ref="9" text="rectangle"></button><button ref="10" text="circle"></button><button ref="11" text="triangle"></button><button ref="8" text="letter"></button><button ref="6" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="7"><div id="wrap" ref="9"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="6"><polygon classes="{}" ref="8"></polygon></svg><div id="area-buttons" ref="10"><button ref="11" text="rectangle"></button><button ref="5" text="circle"></button><button ref="2" text="triangle"></button><button ref="3" text="letter"></button><button ref="4" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
2
null
stop
Click the button that best describes the figure below. <body ref="1"><div id="wrap" ref="6"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="5"><text classes="{}" ref="3" text="v"></text></svg><div id="area-buttons" ref="11"><button ref="8" text="rectangle"></button><button ref="9" text="circle"></button><button ref="4" text="triangle"></button><button ref="10" text="letter"></button><button ref="2" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
10
null
stop
Click the button that best describes the figure below. <body ref="10"><div id="wrap" ref="4"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="2"><text classes="{}" ref="3" text="1"></text></svg><div id="area-buttons" ref="6"><button ref="5" text="rectangle"></button><button ref="9" text="circle"></button><button ref="8" text="triangle"></button><button ref="11" text="letter"></button><button ref="1" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
1
null
stop
Click the button that best describes the figure below. <body ref="10"><div id="wrap" ref="2"><div id="area" ref="1"><svg id="area_svg" classes="{}" ref="11"><text classes="{}" ref="6" text="v"></text></svg><div id="area-buttons" ref="3"><button ref="5" text="rectangle"></button><button ref="4" text="circle"></button><button ref="7" text="triangle"></button><button ref="9" text="letter"></button><button ref="8" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
9
null
stop
Click the button that best describes the figure below. <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><svg id="area_svg" classes="{}" ref="7"><text classes="{}" ref="4" text="9"></text></svg><div id="area-buttons" ref="11"><button ref="2" text="rectangle"></button><button ref="10" text="circle"></button><button ref="8" text="triangle"></button><button ref="3" text="letter"></button><button ref="5" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
5
null
stop
Click the button that best describes the figure below. <body ref="11"><div id="wrap" ref="1"><div id="area" ref="4"><svg id="area_svg" classes="{}" ref="2"><polygon classes="{}" ref="9"></polygon></svg><div id="area-buttons" ref="5"><button ref="7" text="rectangle"></button><button ref="10" text="circle"></button><button ref="8" text="triangle"></button><button ref="6" text="letter"></button><button ref="3" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="3"><div id="wrap" ref="11"><div id="area" ref="10"><svg id="area_svg" classes="{}" ref="9"><polygon classes="{}" ref="5"></polygon></svg><div id="area-buttons" ref="6"><button ref="7" text="rectangle"></button><button ref="4" text="circle"></button><button ref="8" text="triangle"></button><button ref="1" text="letter"></button><button ref="2" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
8
null
stop
Click the button that best describes the figure below. <body ref="6"><div id="wrap" ref="9"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="11"><text classes="{}" ref="10" text="t"></text></svg><div id="area-buttons" ref="3"><button ref="1" text="rectangle"></button><button ref="2" text="circle"></button><button ref="4" text="triangle"></button><button ref="5" text="letter"></button><button ref="8" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
5
null
stop
Click the button that best describes the figure below. <body ref="5"><div id="wrap" ref="2"><div id="area" ref="7"><svg id="area_svg" classes="{}" ref="3"><text classes="{}" ref="11" text="5"></text></svg><div id="area-buttons" ref="6"><button ref="1" text="rectangle"></button><button ref="4" text="circle"></button><button ref="8" text="triangle"></button><button ref="9" text="letter"></button><button ref="10" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
10
null
stop
Click the button that best describes the figure below. <body ref="4"><div id="wrap" ref="8"><div id="area" ref="2"><svg id="area_svg" classes="{}" ref="7"><text classes="{}" ref="9" text="8"></text></svg><div id="area-buttons" ref="10"><button ref="1" text="rectangle"></button><button ref="3" text="circle"></button><button ref="6" text="triangle"></button><button ref="11" text="letter"></button><button ref="5" text="number"></button></div></div></div></body>
Click the button that best describes the figure below.
click
5
null
stop
{click,11,} Enter the username "vanda" <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="1"><p ref="9"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>,
Enter the username "vanda"
keydown
11
vanda
stop
Enter the password "SCFM" <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="1"><p ref="9"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11" value="vanda"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>,
Enter the password "SCFM"
keydown
2
scfm
stop
press login <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="1"><p ref="9"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="11" value="vanda"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="2" value="scfm"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>
press login
click
5
null
stop
{click,10,} Enter the username "annis" <body ref="9"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="2"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the username "annis"
keydown
10
annis
stop
{click,3,} Enter the password "cYzb1" <body ref="9"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="10" value="annis"></input_text></p><p ref="2"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the password "cYzb1"
keydown
3
cyzb1
stop
press login <body ref="9"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="10" value="annis"></input_text></p><p ref="2"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="3" value="cyzb1"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>
press login
click
8
null
stop
{click,6,} Enter the username "olin" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="1"><div id="form" ref="11"><p ref="2"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="6"></input_text></p><p ref="10"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the username "olin"
keydown
6
olin
stop
Enter the password "39YGG" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="1"><div id="form" ref="11"><p ref="2"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="6" value="olin"></input_text></p><p ref="10"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the password "39YGG"
keydown
3
39ygg
stop
press login <body ref="5"><div id="wrap" ref="9"><div id="area" ref="1"><div id="form" ref="11"><p ref="2"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="6" value="olin"></input_text></p><p ref="10"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="3" value="39ygg"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>
press login
click
8
null
stop
{click,10,} Enter the username "karrie" <body ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="8"><p ref="2"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="7"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>,
Enter the username "karrie"
keydown
10
karrie
stop
{click,4,} Enter the password "A9x" <body ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="8"><p ref="2"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10" value="karrie"></input_text></p><p ref="7"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>,
Enter the password "A9x"
keydown
4
a9x
stop
press login <body ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="8"><p ref="2"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10" value="karrie"></input_text></p><p ref="7"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="4" value="a9x"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>
press login
click
9
null
stop
{click,2,} Enter the username "donovan" <body ref="5"><div id="wrap" ref="15"><div id="area" ref="11"><div id="form" ref="13"><p ref="14"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="2"></input_text></p><p ref="3"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="16" text="ok"></button></div></div></div></body>,
Enter the username "donovan"
keydown
2
donovan
stop
{click,9,}{click,1,} Enter the password "0dly" <body ref="5"><div id="wrap" ref="15"><div id="area" ref="11"><div id="form" ref="13"><p ref="14"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="2" value="donovan"></input_text></p><p ref="3"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="16" text="ok"></button></div></div></div></body>,
Enter the password "0dly"
keydown
1
0dly
stop
press login <body ref="5"><div id="wrap" ref="15"><div id="area" ref="11"><div id="form" ref="13"><p ref="14"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="2" value="donovan"></input_text></p><p ref="3"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="1" value="0dly"></input_password></p><button id="subbtn" classes="secondary-action" ref="16" text="ok"></button></div></div></div></body>
press login
click
16
null
stop
{click,4,} Enter the username "dolores" <body ref="7"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="6"><p ref="10"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="4"></input_text></p><p ref="5"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the username "dolores"
keydown
4
dolores
stop
{click,1,} Enter the password "nc" <body ref="7"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="6"><p ref="10"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="4" value="dolores"></input_text></p><p ref="5"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the password "nc"
keydown
1
nc
stop
press login <body ref="7"><div id="wrap" ref="9"><div id="area" ref="2"><div id="form" ref="6"><p ref="10"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="4" value="dolores"></input_text></p><p ref="5"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="1" value="nc"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>
press login
click
3
null
stop
{click,10,} Enter the username "donovan" <body ref="2"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="8"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>,
Enter the username "donovan"
keydown
10
donovan
stop
{click,11,}{click,5,} Enter the password "za6C" <body ref="2"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10" value="donovan"></input_text></p><p ref="8"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>,
Enter the password "za6C"
keydown
5
za6c
stop
press login <body ref="2"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="10" value="donovan"></input_text></p><p ref="8"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5" value="za6c"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="ok"></button></div></div></div></body>
press login
click
9
null
stop
{click,1,}{click,6,} Enter the username "cierra" <body ref="4"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="5"><p ref="11"><label classes="bold" ref="1" 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="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the username "cierra"
keydown
6
cierra
stop
Enter the password "zp" <body ref="4"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="5"><p ref="11"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="6" value="cierra"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the password "zp"
keydown
10
zp
stop
press login <body ref="4"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="5"><p ref="11"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="6" value="cierra"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10" value="zp"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>
press login
click
3
null
stop
{click,6,} Enter the username "olin" <body ref="2"><div id="wrap" ref="4"><div id="area" ref="11"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" 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="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the username "olin"
keydown
6
olin
stop
Enter the password "RhK" <body ref="2"><div id="wrap" ref="4"><div id="area" ref="11"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="6" value="olin"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the password "RhK"
keydown
5
rhk
stop
press login <body ref="2"><div id="wrap" ref="4"><div id="area" ref="11"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="6" value="olin"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="5" value="rhk"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>
press login
click
7
null
stop
{click,5,} Enter the username "enola" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="5"></input_text></p><p ref="1"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "enola"
keydown
5
enola
stop
Enter the password "WQ8F" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="5" value="enola"></input_text></p><p ref="1"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "WQ8F"
keydown
8
wq8f
stop
press login <body ref="6"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="5" value="enola"></input_text></p><p ref="1"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="8" value="wq8f"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,1,} Enter the username "kenda" <body ref="4"><div id="wrap" ref="3"><div id="area" ref="11"><div id="form" ref="7"><p ref="5"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="9"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>,
Enter the username "kenda"
keydown
1
kenda
stop
{click,10,} Enter the password "8e" <body ref="4"><div id="wrap" ref="3"><div id="area" ref="11"><div id="form" ref="7"><p ref="5"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="1" value="kenda"></input_text></p><p ref="9"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>,
Enter the password "8e"
keydown
10
8e
stop
press login <body ref="4"><div id="wrap" ref="3"><div id="area" ref="11"><div id="form" ref="7"><p ref="5"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="1" value="kenda"></input_text></p><p ref="9"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="10" value="8e"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>
press login
click
2
null
stop
{click,6,} Enter the username "jess" <body ref="8"><div id="wrap" ref="7"><div id="area" ref="5"><div id="form" ref="3"><p ref="11"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>,
Enter the username "jess"
keydown
6
jess
stop
{click,10,}{click,4,} Enter the password "z2" <body ref="8"><div id="wrap" ref="7"><div id="area" ref="5"><div id="form" ref="3"><p ref="11"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6" value="jess"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>,
Enter the password "z2"
keydown
4
z2
stop
press login <body ref="8"><div id="wrap" ref="7"><div id="area" ref="5"><div id="form" ref="3"><p ref="11"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="6" value="jess"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4" value="z2"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="ok"></button></div></div></div></body>
press login
click
2
null
stop
{click,4,} Enter the username "truman" <body ref="1"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="10"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="4"></input_text></p><p ref="9"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "truman"
keydown
4
truman
stop
Enter the password "vhpY" <body ref="1"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="10"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="4" value="truman"></input_text></p><p ref="9"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="7"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "vhpY"
keydown
7
vhpy
stop
press login <body ref="1"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="10"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="4" value="truman"></input_text></p><p ref="9"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="7" value="vhpy"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,8,}{click,2,} Enter the username "renda" <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="2"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "renda"
keydown
2
renda
stop
{click,10,} Enter the password "6y" <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="2" value="renda"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "6y"
keydown
10
6y
stop
press login <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="2" value="renda"></input_text></p><p ref="1"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="10" value="6y"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,6,} Enter the username "juan" <body ref="3"><div id="wrap" ref="11"><div id="area" ref="10"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="6"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the username "juan"
keydown
6
juan
stop
{click,2,}{click,1,} Enter the password "IX" <body ref="3"><div id="wrap" ref="11"><div id="area" ref="10"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="6" value="juan"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the password "IX"
keydown
1
ix
stop
press login <body ref="3"><div id="wrap" ref="11"><div id="area" ref="10"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="6" value="juan"></input_text></p><p ref="9"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="1" value="ix"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>
press login
click
8
null
stop