{ // 获取包含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":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1001,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"fermentum\".

, "},"instruction":{"kind":"string","value":" click on the link \"fermentum\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1002,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1003,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"aliquam\".

, "},"instruction":{"kind":"string","value":" click on the link \"aliquam\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1004,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1005,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"tortor.\".

, "},"instruction":{"kind":"string","value":" click on the link \"tortor.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1006,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1007,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"semper\".

, "},"instruction":{"kind":"string","value":" click on the link \"semper\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1008,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1009,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"sagittis\".

, "},"instruction":{"kind":"string","value":" click on the link \"sagittis\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1010,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1011,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"est\".

, "},"instruction":{"kind":"string","value":" click on the link \"est\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1012,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1013,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"duis\".

, "},"instruction":{"kind":"string","value":" click on the link \"duis\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1014,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1015,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"Facilisi\".

, "},"instruction":{"kind":"string","value":" click on the link \"Facilisi\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1016,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1017,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"Scelerisque\".

, "},"instruction":{"kind":"string","value":" click on the link \"Scelerisque\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1018,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1019,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"metus\".

, "},"instruction":{"kind":"string","value":" click on the link \"metus\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1020,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1021,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"urna,\".

, "},"instruction":{"kind":"string","value":" click on the link \"urna,\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1022,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1023,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"scelerisque\".

, "},"instruction":{"kind":"string","value":" click on the link \"scelerisque\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1024,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1025,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"blandit\".

, "},"instruction":{"kind":"string","value":" click on the link \"blandit\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1026,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1027,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"viverra\".

, "},"instruction":{"kind":"string","value":" click on the link \"viverra\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1028,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1029,"cells":{"history_episodes":{"kind":"string","value":" click on the link \"sed.\".

, "},"instruction":{"kind":"string","value":" click on the link \"sed.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1030,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"7n\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7n\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"7n"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1031,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"7n\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7n\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"7n"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1032,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"2OpU\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"2OpU\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2opu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1033,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"2OpU\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"2OpU\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2opu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1034,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1035,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"mHi5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"mHi5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"mhi5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1036,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"mHi5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"mHi5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"mhi5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1037,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"n5Aep\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"n5Aep\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"n5aep"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1038,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"n5Aep\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"n5Aep\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"n5aep"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1039,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"KNBH\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"KNBH\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"knbh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1040,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"KNBH\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"KNBH\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"knbh"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1041,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"4ge\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"4ge\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"4ge"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1042,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"4ge\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"4ge\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"4ge"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1043,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"e\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"e\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"e"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1044,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"e\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"e\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"e"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1045,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"Ly\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Ly\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"ly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1046,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1047,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"Ly\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Ly\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"ly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1048,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"tou\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"tou\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"tou"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1049,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"tou\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"tou\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"tou"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1050,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1051,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"Fv5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Fv5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"fv5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1052,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"Fv5\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Fv5\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"fv5"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1053,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"AnLy\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"AnLy\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"anly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1054,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1055,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"AnLy\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"AnLy\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"anly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1056,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Fy\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Fy\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"fy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1057,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1058,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter \"Fy\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Fy\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"fy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1059,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"xJ9c\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"xJ9c\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"xj9c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1060,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"xJ9c\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"xJ9c\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"xj9c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1061,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1062,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"7n4\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7n4\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"7n4"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1063,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"7n4\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7n4\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"7n4"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1064,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"u5uUO\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"u5uUO\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"u5uuo"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1065,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter \"u5uUO\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"u5uUO\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"u5uuo"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1066,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1067,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1068,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"7\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"7\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1069,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"0DVtT\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"0DVtT\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"0dvtt"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1070,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"0DVtT\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"0DVtT\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"0dvtt"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1071,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"766od\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"766od\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"766od"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1072,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"766od\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"766od\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"766od"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1073,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"vRk\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"vRk\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"vrk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1074,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"vRk\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"vRk\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"vrk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1075,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"Qret\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Qret\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"qret"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1076,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1077,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"Qret\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"Qret\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"qret"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1078,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"f6e\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"f6e\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"f6e"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1079,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter \"f6e\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"f6e\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"f6e"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1080,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"AF\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"AF\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"af"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1081,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"AF\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"AF\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"af"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1082,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"fkhmS\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"fkhmS\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"fkhms"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1083,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1084,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter \"fkhmS\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"fkhmS\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"fkhms"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1085,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"4K7yV\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"4K7yV\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"4k7yv"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1086,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"4K7yV\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"4K7yV\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"4k7yv"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1087,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"PNa\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"PNa\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"pna"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1088,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter \"PNa\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"PNa\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"pna"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1089,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"yC\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"yC\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"yc"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1090,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter \"yC\" into the text field
, "},"instruction":{"kind":"string","value":"Enter \"yC\" into the text field "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"yc"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1091,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1092,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

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

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

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

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

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

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

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

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":10,"numItemsPerPage":100,"numTotalItems":40186,"offset":1000,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjQzNzg5MSwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2NDQxNDkxLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.Rbf5Ve4-fCF_1n-rHy-CXsqArvfC7vfEJ_M1ax_IA7fegUb4DPMMOXZvoAv3KKIZdFDctgei790nxS176XxpBw","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
Expand the sections below <body ref="4"><div id="wrap" ref="7"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="17"><t ref="-69" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="12"><t ref="-70" text="sagittis porta scelerisque"></t><span classes="alink" ref="23" text="eget"></span><t ref="-71" text="laoreet"></t><span classes="alink" ref="19" text="velit,"></span><t ref="-72" text="purus, faucibus ante"></t><span classes="alink" ref="18" text="ornare"></span><span classes="alink" ref="9" text="in"></span><t ref="-73" text="enim turpis"></t><span classes="alink" ref="22" text="et"></span><t ref="-74" text="lorem"></t><t ref="-75" text="consectetur pulvinar. ornare"></t><t ref="-76" text="adipiscing viverra."></t></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="13"><t ref="-77" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="16"><t ref="-78" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
13
null
stop
click on the link "fermentum". <body ref="4"><div id="wrap" ref="7"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="17"><t ref="-119" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="13"><t ref="-120" text="section #2"></t></h3><div id="ui-id-10" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="20"><span classes="alink" ref="1" text="bibendum"></span><t ref="-121" text="sed quis libero"></t><span classes="alink" ref="10" text="urna"></span><span classes="alink" ref="4" text="dui"></span><t ref="-122" text="adipiscing"></t><span classes="alink" ref="7" text="sed"></span><t ref="-123" text="risus,."></t><span classes="alink" ref="8" text="egestas"></span><t ref="-124" text="sollicitudin aliquam at."></t><span classes="alink" ref="15" text="rutrum"></span><t ref="-125" text="tortor ligula enim proin. tincidunt"></t><span classes="alink" ref="11" text="sem."></span></div><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="16"><t ref="-126" text="section #3"></t></h3></div></div></body>,
click on the link "fermentum".
click
16
null
stop
Expand the sections below <body ref="7"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="6"><t ref="-64" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-65" text="libero"></t><span classes="alink" ref="10" text="dignissim"></span><span classes="alink" ref="5" text="tellus"></span><t ref="-66" text="lorem"></t><t ref="-67" text="tristique"></t><span classes="alink" ref="3" text="pharetra"></span><span classes="alink" ref="4" text="ac"></span><t ref="-68" text="at quam."></t><t ref="-69" text="enim libero cum sed"></t><span classes="alink" ref="12" text="fermentum"></span><t ref="-70" text="a, ac consequat ac gravida elit."></t></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="9"><t ref="-72" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
1
null
stop
click on the link "aliquam". <body ref="7"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="6"><t ref="-268" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-269" text="libero"></t><span classes="alink" ref="10" text="dignissim"></span><span classes="alink" ref="5" text="tellus"></span><t ref="-270" text="lorem"></t><t ref="-271" text="tristique"></t><span classes="alink" ref="3" text="pharetra"></span><span classes="alink" ref="4" text="ac"></span><t ref="-272" text="at quam."></t><t ref="-273" text="enim libero cum sed"></t><span classes="alink" ref="12" text="fermentum"></span><t ref="-274" text="a, ac consequat ac gravida elit."></t></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all ui-state-hover ui-state-focus" ref="1"><t ref="-275" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="9"><t ref="-276" text="section #3"></t></h3></div></div></body>,
click on the link "aliquam".
click
1
null
stop
Expand the sections below <body ref="1"><div id="wrap" ref="5"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="10"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="13"><t ref="-69" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="9"><t ref="-70" text="cursus amet interdum. egestas."></t><t ref="-71" text="massa. dignissim. quis"></t><span classes="alink" ref="7" text="volutpat."></span><t ref="-72" text="interdum bibendum pellentesque"></t><t ref="-73" text="cras"></t><span classes="alink" ref="3" text="tellus"></span><t ref="-74" text="ut"></t><span classes="alink" ref="14" text="scelerisque"></span><t ref="-75" text="et. nam"></t><t ref="-76" text="egestas feugiat purus."></t></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="12"><t ref="-77" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="15"><t ref="-78" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
12
null
stop
click on the link "tortor.". <body ref="1"><div id="wrap" ref="5"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="10"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="13"><t ref="-129" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="12"><t ref="-130" text="section #2"></t></h3><div id="ui-id-10" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-131" text="arcu,"></t><span classes="alink" ref="8" text="risus"></span><t ref="-132" text="nulla porta. ipsum"></t><t ref="-133" text="amet, dignissim hac aliquam"></t><t ref="-134" text="amet,."></t><span classes="alink" ref="6" text="vitae"></span><t ref="-135" text="sit etiam. nisl"></t><t ref="-136" text="tristique id sapien facilisis enim"></t><t ref="-137" text="semper."></t></div><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="15"><t ref="-138" text="section #3"></t></h3></div></div></body>,
click on the link "tortor.".
click
15
null
stop
Expand the sections below <body ref="4"><div id="wrap" ref="5"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="2"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="3"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="6"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
3
null
stop
click on the link "semper". <body ref="4"><div id="wrap" ref="5"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="2"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="3"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="6"><t ref="-18" text="section #3"></t></h3></div></div></body>,
click on the link "semper".
click
3
null
stop
Expand the sections below <body ref="6"><div id="wrap" ref="4"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="3"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
3
null
stop
click on the link "sagittis". <body ref="6"><div id="wrap" ref="4"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-94" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="2"><t ref="-95" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="3"><t ref="-96" text="section #3"></t></h3></div></div></body>,
click on the link "sagittis".
click
2
null
stop
Expand the sections below <body ref="10"><div id="wrap" ref="11"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="5"><t ref="-74" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="6"><t ref="-75" text="at"></t><span classes="alink" ref="12" text="morbi"></span><t ref="-76" text="facilisis."></t><span classes="alink" ref="7" text="eget"></span><t ref="-77" text="justo"></t><t ref="-78" text="vehicula"></t><span classes="alink" ref="9" text="sit."></span><t ref="-79" text="est nisl. ipsum sit"></t><t ref="-80" text="risus quis"></t><span classes="alink" ref="3" text="risus"></span><t ref="-81" text="consectetur"></t><t ref="-82" text="interdum nisl, orci neque, id."></t></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-84" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
4
null
stop
click on the link "est". <body ref="10"><div id="wrap" ref="11"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="5"><t ref="-130" text="section #1"></t></h3><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="4"><t ref="-131" text="section #2"></t></h3><div id="ui-id-16" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="15"><t ref="-132" text="purus nisl quis. vivamus."></t><t ref="-133" text="egestas. nisl cras faucibus"></t><t ref="-134" text="lectus pretium,. aliquam aliquam."></t><t ref="-135" text="ipsum proin in"></t><span classes="alink" ref="14" text="quis"></span><t ref="-136" text="augue est"></t><t ref="-137" text="nullam. nullam."></t></div><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="13"><t ref="-138" text="section #3"></t></h3></div></div></body>,
click on the link "est".
click
13
null
stop
Expand the sections below <body ref="6"><div id="wrap" ref="14"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="13"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="7"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="10"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
4
null
stop
click on the link "duis". <body ref="6"><div id="wrap" ref="14"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="13"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="4"><t ref="-130" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="7"><t ref="-131" text="section #2"></t></h3><div id="ui-id-4" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="9"><t ref="-132" text="scelerisque fermentum,"></t><t ref="-133" text="pellentesque. fermentum enim,"></t><t ref="-134" text="lacus. lectus ultrices molestie"></t><t ref="-135" text="nunc lacus semper id in"></t><span classes="alink" ref="12" text="in"></span><t ref="-136" text="duis"></t><t ref="-137" text="vitae. lorem"></t><span classes="alink" ref="2" text="viverra."></span><span classes="alink" ref="1" text="dignissim."></span></div><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="10"><t ref="-138" text="section #3"></t></h3></div></div></body>,
click on the link "duis".
click
10
null
stop
Expand the sections below <body ref="2"><div id="wrap" ref="13"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="5"><t ref="-74" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="9"><t ref="-75" text="leo feugiat odio tincidunt quis"></t><t ref="-76" text="consectetur."></t><span classes="alink" ref="6" text="phasellus"></span><t ref="-77" text="velit"></t><t ref="-78" text="faucibus eget"></t><span classes="alink" ref="3" text="viverra"></span><t ref="-79" text="morbi duis"></t><t ref="-80" text="ut."></t><span classes="alink" ref="7" text="ipsum"></span><t ref="-81" text="dolor non."></t><t ref="-82" text="suspendisse nisi, morbi."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="15"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="14"><t ref="-84" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
15
null
stop
click on the link "Facilisi". <body ref="2"><div id="wrap" ref="13"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="5"><t ref="-74" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="9"><t ref="-75" text="leo feugiat odio tincidunt quis"></t><t ref="-76" text="consectetur."></t><span classes="alink" ref="6" text="phasellus"></span><t ref="-77" text="velit"></t><t ref="-78" text="faucibus eget"></t><span classes="alink" ref="3" text="viverra"></span><t ref="-79" text="morbi duis"></t><t ref="-80" text="ut."></t><span classes="alink" ref="7" text="ipsum"></span><t ref="-81" text="dolor non."></t><t ref="-82" text="suspendisse nisi, morbi."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="15"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="14"><t ref="-84" text="section #3"></t></h3></div></div></body>,
click on the link "Facilisi".
click
15
null
stop
Expand the sections below <body ref="1"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-31" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-33" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="4"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-35" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="5"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
5
null
stop
click on the link "Scelerisque". <body ref="1"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-31" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-33" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="4"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-35" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="5"><t ref="-18" text="section #3"></t></h3></div></div></body>,
click on the link "Scelerisque".
click
5
null
stop
Expand the sections below <body ref="15"><div id="wrap" ref="17"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="3"><t ref="-64" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="4"><t ref="-65" text="donec tortor proin aliquam."></t><t ref="-66" text="nulla. ut lectus pretium netus"></t><t ref="-67" text="mattis lorem ipsum placerat eu."></t><t ref="-68" text="ullamcorper"></t><span classes="alink" ref="5" text="facilisi."></span><t ref="-69" text="semper"></t><t ref="-70" text="facilisis tempus. tincidunt."></t></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><t ref="-72" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
6
null
stop
click on the link "metus". <body ref="15"><div id="wrap" ref="17"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="3"><t ref="-123" text="section #1"></t></h3><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="6"><t ref="-124" text="section #2"></t></h3><div id="ui-id-16" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="1"><t ref="-125" text="diam aliquam turpis"></t><span classes="alink" ref="14" text="nibh"></span><t ref="-126" text="augue"></t><t ref="-127" text="mattis"></t><span classes="alink" ref="7" text="fringilla"></span><span classes="alink" ref="13" text="tempor."></span><t ref="-128" text="blandit"></t><t ref="-129" text="enim senectus"></t><span classes="alink" ref="9" text="accumsan."></span><t ref="-130" text="senectus diam purus a at sagittis"></t><t ref="-131" text="tempus in."></t></div><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="2"><t ref="-132" text="section #3"></t></h3></div></div></body>,
click on the link "metus".
click
2
null
stop
Expand the sections below <body ref="10"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="15"><t ref="-74" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="7"><t ref="-75" text="felis,"></t><span classes="alink" ref="12" text="consequat,"></span><t ref="-76" text="bibendum"></t><t ref="-77" text="tempus ornare vel tempus, nec"></t><t ref="-78" text="mi. lacinia"></t><span classes="alink" ref="14" text="habitant."></span><t ref="-79" text="faucibus"></t><t ref="-80" text="amet felis lacus"></t><span classes="alink" ref="11" text="sapien"></span><t ref="-81" text="dictumst"></t><t ref="-82" text="integer praesent commodo."></t></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-84" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
4
null
stop
click on the link "urna,". <body ref="10"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="15"><t ref="-74" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="7"><t ref="-75" text="felis,"></t><span classes="alink" ref="12" text="consequat,"></span><t ref="-76" text="bibendum"></t><t ref="-77" text="tempus ornare vel tempus, nec"></t><t ref="-78" text="mi. lacinia"></t><span classes="alink" ref="14" text="habitant."></span><t ref="-79" text="faucibus"></t><t ref="-80" text="amet felis lacus"></t><span classes="alink" ref="11" text="sapien"></span><t ref="-81" text="dictumst"></t><t ref="-82" text="integer praesent commodo."></t></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-84" text="section #3"></t></h3></div></div></body>,
click on the link "urna,".
click
4
null
stop
Expand the sections below <body ref="10"><div id="wrap" ref="1"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="8"><t ref="-64" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="6"><t ref="-65" text="elementum massa nibh tortor"></t><t ref="-66" text="amet"></t><span classes="alink" ref="7" text="nunc,"></span><span classes="alink" ref="5" text="at"></span><t ref="-67" text="scelerisque non"></t><t ref="-68" text="vel. duis. blandit et risus"></t><t ref="-69" text="tempus,. in. fermentum aliquet"></t><t ref="-70" text="integer suspendisse."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="2"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="11"><t ref="-72" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
2
null
stop
click on the link "scelerisque". <body ref="10"><div id="wrap" ref="1"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="8"><t ref="-64" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="6"><t ref="-65" text="elementum massa nibh tortor"></t><t ref="-66" text="amet"></t><span classes="alink" ref="7" text="nunc,"></span><span classes="alink" ref="5" text="at"></span><t ref="-67" text="scelerisque non"></t><t ref="-68" text="vel. duis. blandit et risus"></t><t ref="-69" text="tempus,. in. fermentum aliquet"></t><t ref="-70" text="integer suspendisse."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="2"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="11"><t ref="-72" text="section #3"></t></h3></div></div></body>,
click on the link "scelerisque".
click
2
null
stop
Expand the sections below <body ref="4"><div id="wrap" ref="1"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="2"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="12"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="7"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
6
null
stop
click on the link "blandit". <body ref="4"><div id="wrap" ref="1"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="2"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="6"><t ref="-124" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="12"><t ref="-125" text="section #2"></t></h3><div id="ui-id-4" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="14"><span classes="alink" ref="5" text="urna."></span><t ref="-126" text="enim"></t><span classes="alink" ref="8" text="eu,."></span><span classes="alink" ref="11" text="volutpat"></span><t ref="-127" text="sed."></t><t ref="-128" text="rutrum. posuere pellentesque"></t><t ref="-129" text="nunc volutpat pretium nam vitae"></t><span classes="alink" ref="13" text="hendrerit"></span><t ref="-130" text="ut orci sed lectus"></t><t ref="-131" text="ultrices cursus."></t></div><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="7"><t ref="-132" text="section #3"></t></h3></div></div></body>,
click on the link "blandit".
click
7
null
stop
Expand the sections below <body ref="16"><div id="wrap" ref="11"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="15"><t ref="-69" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="2"><t ref="-70" text="varius. risus rhoncus in enim"></t><t ref="-71" text="nec. facilisis libero lorem"></t><t ref="-72" text="ridiculus"></t><span classes="alink" ref="8" text="nullam"></span><t ref="-73" text="imperdiet"></t><span classes="alink" ref="6" text="vitae"></span><span classes="alink" ref="3" text="ac,"></span><t ref="-74" text="pharetra, viverra."></t><span classes="alink" ref="7" text="proin."></span><t ref="-75" text="eget"></t><t ref="-76" text="justo"></t><span classes="alink" ref="14" text="in."></span></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="17"><t ref="-77" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-78" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
17
null
stop
click on the link "viverra". <body ref="16"><div id="wrap" ref="11"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="15"><t ref="-124" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="17"><t ref="-125" text="section #2"></t></h3><div id="ui-id-10" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="4"><span classes="alink" ref="5" text="quis"></span><t ref="-126" text="faucibus neque, id eu sed"></t><span classes="alink" ref="16" text="pellentesque"></span><span classes="alink" ref="11" text="massa."></span><t ref="-127" text="lacus. sed"></t><t ref="-128" text="quam. sed"></t><span classes="alink" ref="1" text="quam"></span><t ref="-129" text="neque. eget"></t><t ref="-130" text="lacus auctor convallis"></t><t ref="-131" text="consectetur bibendum."></t></div><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="13"><t ref="-132" text="section #3"></t></h3></div></div></body>,
click on the link "viverra".
click
13
null
stop
Expand the sections below <body ref="6"><div id="wrap" ref="10"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="5"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="7"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
1
null
stop
click on the link "sed.". <body ref="6"><div id="wrap" ref="10"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="5"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-64" text="section #1"></t></h3><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="7"><t ref="-65" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="1"><t ref="-66" text="section #3"></t></h3><div id="ui-id-18" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-67" text="sit dictum in tellus laoreet sit leo."></t><t ref="-68" text="purus pulvinar dignissim"></t><t ref="-69" text="malesuada"></t><span classes="alink" ref="4" text="ac"></span><t ref="-70" text="bibendum"></t><t ref="-71" text="molestie suspendisse amet leo"></t><t ref="-72" text="ornare in. ut."></t></div></div></div></body>,
click on the link "sed.".
click
7
null
stop
{click,2,} Enter "7n" into the text field <body ref="1"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="5"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "7n" into the text field
keydown
2
7n
stop
{click,2,} Enter "7n" into the text field <body ref="1"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="5"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "7n" into the text field
keydown
2
7n
stop
{click,2,} Enter "2OpU" into the text field <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "2OpU" into the text field
keydown
2
2opu
stop
{click,2,} Enter "2OpU" into the text field <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "2OpU" into the text field
keydown
2
2opu
stop
click submit <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="2" value="2opu"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>
click submit
click
5
null
stop
{click,2,} Enter "mHi5" into the text field <body ref="1"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "mHi5" into the text field
keydown
2
mhi5
stop
{click,2,} Enter "mHi5" into the text field <body ref="1"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "mHi5" into the text field
keydown
2
mhi5
stop
{click,4,} Enter "n5Aep" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "n5Aep" into the text field
keydown
4
n5aep
stop
{click,4,} Enter "n5Aep" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "n5Aep" into the text field
keydown
4
n5aep
stop
{click,4,} Enter "KNBH" into the text field <body ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "KNBH" into the text field
keydown
4
knbh
stop
{click,4,} Enter "KNBH" into the text field <body ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="5"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "KNBH" into the text field
keydown
4
knbh
stop
{click,3,} Enter "4ge" into the text field <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "4ge" into the text field
keydown
3
4ge
stop
{click,3,} Enter "4ge" into the text field <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "4ge" into the text field
keydown
3
4ge
stop
{click,2,} Enter "e" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "e" into the text field
keydown
2
e
stop
{click,2,} Enter "e" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "e" into the text field
keydown
2
e
stop
{click,3,} Enter "Ly" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "Ly" into the text field
keydown
3
ly
stop
click submit <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_text id="tt" ref="3" value="ly"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,3,} Enter "Ly" into the text field <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "Ly" into the text field
keydown
3
ly
stop
{click,4,} Enter "tou" into the text field <body ref="1"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "tou" into the text field
keydown
4
tou
stop
{click,4,} Enter "tou" into the text field <body ref="1"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "tou" into the text field
keydown
4
tou
stop
click submit <body ref="1"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="4" value="tou"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>
click submit
click
5
null
stop
{click,5,} Enter "Fv5" into the text field <body ref="2"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "Fv5" into the text field
keydown
5
fv5
stop
{click,5,} Enter "Fv5" into the text field <body ref="2"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="4"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "Fv5" into the text field
keydown
5
fv5
stop
{click,1,} Enter "AnLy" into the text field <body ref="3"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="4"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "AnLy" into the text field
keydown
1
anly
stop
click submit <body ref="3"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="4"><input_text id="tt" ref="1" value="anly"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>
click submit
click
2
null
stop
{click,1,} Enter "AnLy" into the text field <body ref="3"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="4"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "AnLy" into the text field
keydown
1
anly
stop
{click,4,} Enter "Fy" into the text field <body ref="2"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="3"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "Fy" into the text field
keydown
4
fy
stop
click submit <body ref="2"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="3"><input_text id="tt" ref="4" value="fy"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>
click submit
click
1
null
stop
{click,4,} Enter "Fy" into the text field <body ref="2"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="3"><input_text id="tt" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "Fy" into the text field
keydown
4
fy
stop
{click,1,} Enter "xJ9c" into the text field <body ref="4"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "xJ9c" into the text field
keydown
1
xj9c
stop
{click,1,} Enter "xJ9c" into the text field <body ref="4"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "xJ9c" into the text field
keydown
1
xj9c
stop
click submit <body ref="5"><div id="wrap" ref="3"><div id="area" ref="1"><div id="form" ref="4"><input_text id="tt" ref="2" value="a1ahk"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>
click submit
click
6
null
stop
{click,1,} Enter "7n4" into the text field <body ref="3"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="5"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "7n4" into the text field
keydown
1
7n4
stop
{click,1,} Enter "7n4" into the text field <body ref="3"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="5"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "7n4" into the text field
keydown
1
7n4
stop
{click,1,} Enter "u5uUO" into the text field <body ref="3"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="2"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "u5uUO" into the text field
keydown
1
u5uuo
stop
{click,1,} Enter "u5uUO" into the text field <body ref="3"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="2"><input_text id="tt" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "u5uUO" into the text field
keydown
1
u5uuo
stop
{click,3,} Enter "7" into the text field <body ref="4"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "7" into the text field
keydown
3
7
stop
click submit <body ref="4"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3" value="7"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>
click submit
click
1
null
stop
{click,3,} Enter "7" into the text field <body ref="4"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter "7" into the text field
keydown
3
7
stop
{click,3,} Enter "0DVtT" into the text field <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "0DVtT" into the text field
keydown
3
0dvtt
stop
{click,3,} Enter "0DVtT" into the text field <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "0DVtT" into the text field
keydown
3
0dvtt
stop
{click,3,} Enter "766od" into the text field <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "766od" into the text field
keydown
3
766od
stop
{click,3,} Enter "766od" into the text field <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter "766od" into the text field
keydown
3
766od
stop
{click,5,} Enter "vRk" into the text field <body ref="6"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="3"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "vRk" into the text field
keydown
5
vrk
stop
{click,5,} Enter "vRk" into the text field <body ref="6"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="3"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "vRk" into the text field
keydown
5
vrk
stop
{click,6,} Enter "Qret" into the text field <body ref="5"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "Qret" into the text field
keydown
6
qret
stop
click submit <body ref="5"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6" value="qret"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,6,} Enter "Qret" into the text field <body ref="5"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="3"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "Qret" into the text field
keydown
6
qret
stop
{click,5,} Enter "f6e" into the text field <body ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="4"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "f6e" into the text field
keydown
5
f6e
stop
{click,5,} Enter "f6e" into the text field <body ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="4"><input_text id="tt" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "f6e" into the text field
keydown
5
f6e
stop
{click,3,} Enter "AF" into the text field <body ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "AF" into the text field
keydown
3
af
stop
{click,3,} Enter "AF" into the text field <body ref="1"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter "AF" into the text field
keydown
3
af
stop
{click,6,} Enter "fkhmS" into the text field <body ref="2"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="5"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "fkhmS" into the text field
keydown
6
fkhms
stop
click submit <body ref="2"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="5"><input_text id="tt" ref="6" value="fkhms"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>
click submit
click
3
null
stop
{click,6,} Enter "fkhmS" into the text field <body ref="2"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="5"><input_text id="tt" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter "fkhmS" into the text field
keydown
6
fkhms
stop
{click,2,} Enter "4K7yV" into the text field <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "4K7yV" into the text field
keydown
2
4k7yv
stop
{click,2,} Enter "4K7yV" into the text field <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "4K7yV" into the text field
keydown
2
4k7yv
stop
{click,2,} Enter "PNa" into the text field <body ref="5"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "PNa" into the text field
keydown
2
pna
stop
{click,2,} Enter "PNa" into the text field <body ref="5"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="3"><input_text id="tt" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter "PNa" into the text field
keydown
2
pna
stop
{click,3,} Enter "yC" into the text field <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "yC" into the text field
keydown
3
yc
stop
{click,3,} Enter "yC" into the text field <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_text id="tt" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter "yC" into the text field
keydown
3
yc
stop
click submit <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="2"><input_text id="tt" ref="3" value="9"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>
click submit
click
5
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="9"><div id="area" ref="8"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="16"><span id="ui-id-3" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="12"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="5" text="lectus fermentum quis volutpat."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="11"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></div><div classes="ui-resizable-handle ui-resizable-w" ref="4"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Close the dialog box by clicking the "x".
click
18
null
stop
Close the dialog box by clicking the "x". <body ref="13"><div id="wrap" ref="11"><div id="area" ref="5"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="18"><span id="ui-id-1" classes="ui-dialog-title" ref="7"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="3"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="8" text="venenatis, mattis erat vestibulum consectetur suscipit aliquam."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></div><div classes="ui-resizable-handle ui-resizable-w" ref="2"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="12"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Close the dialog box by clicking the "x".
click
3
null
stop
Close the dialog box by clicking the "x". <body ref="16"><div id="wrap" ref="6"><div id="area" ref="1"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-3" classes="ui-dialog-title" ref="4"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="8" text="integer sollicitudin eget cursus a metus."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="17"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Close the dialog box by clicking the "x".
click
14
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="9"><div id="area" ref="1"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="10"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="15"><span id="ui-id-4" classes="ui-dialog-title" ref="8"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="3"><p ref="11" text="praesent tempus, urna. nibh id aliquam et."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="7"></div><div classes="ui-resizable-handle ui-resizable-e" ref="17"></div><div classes="ui-resizable-handle ui-resizable-s" ref="16"></div><div classes="ui-resizable-handle ui-resizable-w" ref="12"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="14"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Close the dialog box by clicking the "x".
click
2
null
stop
Close the dialog box by clicking the "x". <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-4" classes="ui-dialog-title" ref="17"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="13"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="9"><p ref="3" text="tortor. egestas vitae. at pellentesque integer leo."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="12"></div><div classes="ui-resizable-handle ui-resizable-s" ref="1"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="8"></div></div></body>
Close the dialog box by clicking the "x".
click
18
null
stop
Close the dialog box by clicking the "x". <body ref="6"><div id="wrap" ref="14"><div id="area" ref="10"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="18"><span id="ui-id-1" classes="ui-dialog-title" ref="9"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="3"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="15" text="fringilla in consequat elementum. diam."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="16"></div><div classes="ui-resizable-handle ui-resizable-e" ref="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="11"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="4"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="8"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Close the dialog box by clicking the "x".
click
7
null
stop
Close the dialog box by clicking the "x". <body ref="8"><div id="wrap" ref="5"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="2"><span id="ui-id-1" classes="ui-dialog-title" ref="9"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="13" text="sodales nisl adipiscing vitae. nisi, neque, ut."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="11"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="1"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Close the dialog box by clicking the "x".
click
14
null
stop
Close the dialog box by clicking the "x". <body ref="18"><div id="wrap" ref="3"><div id="area" ref="1"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-2" classes="ui-dialog-title" ref="4"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="10"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="15"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="5" text="feugiat. eget nam. tortor."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="16"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></div><div classes="ui-resizable-handle ui-resizable-w" ref="12"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="7"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="2"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="6"></div></div></body>
Close the dialog box by clicking the "x".
click
10
null
stop