{ // 获取包含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":"Enter the username \"chas\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"chas"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":501,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"KyH\"

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the password \"BM\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"bm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":505,"cells":{"history_episodes":{"kind":"string","value":" press login

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

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

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

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

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"nieves\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"nieves"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":513,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"82\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"kasie\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"kasie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":516,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"jIG\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"rex\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"rex"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":519,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"rM31H\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"donovan\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"donovan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":522,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"P19df\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"rex\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"rex"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":525,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"V3\"

, "},"instruction":{"kind":"string","value":"Enter the password \"V3\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"v3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":526,"cells":{"history_episodes":{"kind":"string","value":" press login

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

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"keli\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"keli"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":531,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"yBN\"

, "},"instruction":{"kind":"string","value":"Enter the password \"yBN\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"ybn"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":532,"cells":{"history_episodes":{"kind":"string","value":" press login

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

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"ignacio\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"ignacio"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":537,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"mENTs\"

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

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":539,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":540,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":541,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":542,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":543,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":544,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":545,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":546,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":547,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":548,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":549,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":550,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":551,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":552,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":553,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":554,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":555,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":556,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

, "},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":557,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":558,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":559,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":560,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":561,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":562,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #3.

"},"instruction":{"kind":"string","value":"Click on Tab #3. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":563,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":564,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":565,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":566,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":567,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":568,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":569,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":570,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #1.

"},"instruction":{"kind":"string","value":"Click on Tab #1. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":571,"cells":{"history_episodes":{"kind":"string","value":" Click on Tab #2.

"},"instruction":{"kind":"string","value":"Click on Tab #2. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":572,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 07/21/2019 as the date
, "},"instruction":{"kind":"string","value":"Enter 07/21/2019 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"2019-07-21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":573,"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":574,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 11/12/2015 as the date
, "},"instruction":{"kind":"string","value":"Enter 11/12/2015 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2015-11-12"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":575,"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":576,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 06/03/2019 as the date
, "},"instruction":{"kind":"string","value":"Enter 06/03/2019 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2019-06-03"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":577,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 10/20/2013 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/20/2013 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2013-10-20"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":578,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 07/27/2011 as the date
, "},"instruction":{"kind":"string","value":"Enter 07/27/2011 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2011-07-27"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":579,"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":580,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 10/06/2018 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/06/2018 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2018-10-06"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":581,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 12/16/2013 as the date
, "},"instruction":{"kind":"string","value":"Enter 12/16/2013 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"2013-12-16"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":582,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 06/19/2018 as the date
, "},"instruction":{"kind":"string","value":"Enter 06/19/2018 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2018-06-19"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":583,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 07/01/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 07/01/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2017-07-01"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":584,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 01/31/2015 as the date
, "},"instruction":{"kind":"string","value":"Enter 01/31/2015 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2015-01-31"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":585,"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":586,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 10/28/2010 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/28/2010 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2010-10-28"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":587,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 08/06/2013 as the date
, "},"instruction":{"kind":"string","value":"Enter 08/06/2013 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2013-08-06"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":588,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 06/05/2011 as the date
, "},"instruction":{"kind":"string","value":"Enter 06/05/2011 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2011-06-05"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":589,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 10/29/2016 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/29/2016 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2016-10-29"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":590,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 08/16/2019 as the date
, "},"instruction":{"kind":"string","value":"Enter 08/16/2019 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2019-08-16"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":591,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 02/11/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 02/11/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2017-02-11"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":592,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 02/08/2019 as the date
, "},"instruction":{"kind":"string","value":"Enter 02/08/2019 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2019-02-08"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":593,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 03/21/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 03/21/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2017-03-21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":594,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":595,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":596,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":597,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":598,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":599,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":5,"numItemsPerPage":100,"numTotalItems":40186,"offset":500,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjI4MzUxOCwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2Mjg3MTE4LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.kI3Lylq_swdkZy96XB3tB4CiwVz49nHxrUT1gmb1l8aZjZBHkm6-E7VST9Qa1_jOPjqLk1C-iQF-_E6l8KaACg","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
{click,9,} Enter the username "chas" <body ref="2"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="9"></input_text></p><p ref="11"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the username "chas"
keydown
9
chas
stop
Enter the password "KyH" <body ref="2"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="9" value="chas"></input_text></p><p ref="11"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the password "KyH"
keydown
4
kyh
stop
press login <body ref="2"><div id="wrap" ref="8"><div id="area" ref="7"><div id="form" ref="10"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="9" value="chas"></input_text></p><p ref="11"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="4" value="kyh"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>
press login
click
5
null
stop
{click,3,} Enter the username "cristin" <body ref="8"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="1"><p ref="7"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="3"></input_text></p><p ref="11"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the username "cristin"
keydown
3
cristin
stop
Enter the password "BM" <body ref="8"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="1"><p ref="7"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="3" value="cristin"></input_text></p><p ref="11"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>,
Enter the password "BM"
keydown
9
bm
stop
press login <body ref="8"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="1"><p ref="7"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="3" value="cristin"></input_text></p><p ref="11"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="9" value="bm"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="login"></button></div></div></div></body>
press login
click
2
null
stop
{click,1,} Enter the username "rex" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="4"><p ref="3"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="8"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the username "rex"
keydown
1
rex
stop
Enter the password "xp8" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="4"><p ref="3"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="1" value="rex"></input_text></p><p ref="8"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the password "xp8"
keydown
10
xp8
stop
press login <body ref="6"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="4"><p ref="3"><label classes="bold" ref="11" text="username"></label><input_text id="username" ref="1" value="rex"></input_text></p><p ref="8"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="10" value="xp8"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>
press login
click
7
null
stop
{click,1,} Enter the username "myron" <body ref="11"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="6"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="3"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the username "myron"
keydown
1
myron
stop
Enter the password "pmq09" <body ref="11"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="6"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="1" value="myron"></input_text></p><p ref="3"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the password "pmq09"
keydown
2
pmq09
stop
press login <body ref="11"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="6"><p ref="4"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="1" value="myron"></input_text></p><p ref="3"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="2" value="pmq09"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>
press login
click
10
null
stop
{click,5,} Enter the username "nieves" <body ref="8"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="10"><p ref="11"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="5"></input_text></p><p ref="2"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the username "nieves"
keydown
5
nieves
stop
{click,1,} Enter the password "82" <body ref="8"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="10"><p ref="11"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="5" value="nieves"></input_text></p><p ref="2"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>,
Enter the password "82"
keydown
1
82
stop
press login <body ref="8"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="10"><p ref="11"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="5" value="nieves"></input_text></p><p ref="2"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="1" value="82"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="login"></button></div></div></div></body>
press login
click
7
null
stop
{click,4,} Enter the username "kasie" <body ref="8"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="4"></input_text></p><p ref="3"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the username "kasie"
keydown
4
kasie
stop
{click,11,} Enter the password "jIG" <body ref="8"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="4" value="kasie"></input_text></p><p ref="3"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>,
Enter the password "jIG"
keydown
11
jig
stop
press login <body ref="8"><div id="wrap" ref="2"><div id="area" ref="10"><div id="form" ref="9"><p ref="1"><label classes="bold" ref="6" text="username"></label><input_text id="username" ref="4" value="kasie"></input_text></p><p ref="3"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="11" value="jig"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="login"></button></div></div></div></body>
press login
click
5
null
stop
{click,10,} Enter the username "rex" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the username "rex"
keydown
10
rex
stop
{click,11,} Enter the password "rM31H" <body ref="5"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="10" value="rex"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>,
Enter the password "rM31H"
keydown
11
rm31h
stop
press login <body ref="5"><div id="wrap" ref="9"><div id="area" ref="8"><div id="form" ref="7"><p ref="4"><label classes="bold" ref="2" text="username"></label><input_text id="username" ref="10" value="rex"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="11" value="rm31h"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="login"></button></div></div></div></body>
press login
click
3
null
stop
{click,9,} Enter the username "donovan" <body ref="4"><div id="wrap" ref="11"><div id="area" ref="2"><div id="form" ref="6"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="9"></input_text></p><p ref="5"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the username "donovan"
keydown
9
donovan
stop
Enter the password "P19df" <body ref="4"><div id="wrap" ref="11"><div id="area" ref="2"><div id="form" ref="6"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="9" value="donovan"></input_text></p><p ref="5"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the password "P19df"
keydown
8
p19df
stop
press login <body ref="4"><div id="wrap" ref="11"><div id="area" ref="2"><div id="form" ref="6"><p ref="1"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="9" value="donovan"></input_text></p><p ref="5"><label classes="bold" ref="7" text="password"></label><input_password id="password" ref="8" value="p19df"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>
press login
click
10
null
stop
{click,6,} Enter the username "rex" <body ref="2"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="3"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="6"></input_text></p><p ref="5"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="4" text="login"></button></div></div></div></body>,
Enter the username "rex"
keydown
6
rex
stop
{click,9,} Enter the password "V3" <body ref="2"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="3"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="6" value="rex"></input_text></p><p ref="5"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="4" text="login"></button></div></div></div></body>,
Enter the password "V3"
keydown
9
v3
stop
press login <body ref="2"><div id="wrap" ref="7"><div id="area" ref="11"><div id="form" ref="3"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="6" value="rex"></input_text></p><p ref="5"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="9" value="v3"></input_password></p><button id="subbtn" classes="secondary-action" ref="4" text="login"></button></div></div></div></body>
press login
click
4
null
stop
{click,1,} Enter the username "riley" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the username "riley"
keydown
1
riley
stop
{click,4,} Enter the password "WEQ" <body ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1" value="riley"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>,
Enter the password "WEQ"
keydown
4
weq
stop
press login <body ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="11"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="1" value="riley"></input_text></p><p ref="8"><label classes="bold" ref="9" text="password"></label><input_password id="password" ref="4" value="weq"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="login"></button></div></div></div></body>
press login
click
10
null
stop
{click,3,} Enter the username "keli" <body ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="5"><p ref="1"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="3"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>,
Enter the username "keli"
keydown
3
keli
stop
{click,9,} Enter the password "yBN" <body ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="5"><p ref="1"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="3" value="keli"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>,
Enter the password "yBN"
keydown
9
ybn
stop
press login <body ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><div id="form" ref="5"><p ref="1"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="3" value="keli"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="9" value="ybn"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="login"></button></div></div></div></body>
press login
click
8
null
stop
{click,10,} Enter the username "vanda" <body ref="4"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="7"><p ref="11"><label classes="bold" ref="5" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="8"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="login"></button></div></div></div></body>,
Enter the username "vanda"
keydown
10
vanda
stop
{click,3,} Enter the password "Xmhe" <body ref="4"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="7"><p ref="11"><label classes="bold" ref="5" text="username"></label><input_text id="username" ref="10" value="vanda"></input_text></p><p ref="8"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="login"></button></div></div></div></body>,
Enter the password "Xmhe"
keydown
3
xmhe
stop
press login <body ref="4"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="7"><p ref="11"><label classes="bold" ref="5" text="username"></label><input_text id="username" ref="10" value="vanda"></input_text></p><p ref="8"><label classes="bold" ref="6" text="password"></label><input_password id="password" ref="3" value="xmhe"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="login"></button></div></div></div></body>
press login
click
9
null
stop
{click,8,} Enter the username "ignacio" <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="10"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8"></input_text></p><p ref="5"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the username "ignacio"
keydown
8
ignacio
stop
{click,1,} Enter the password "mENTs" <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="10"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8" value="ignacio"></input_text></p><p ref="5"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="1"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>,
Enter the password "mENTs"
keydown
1
ments
stop
press login <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><div id="form" ref="10"><p ref="7"><label classes="bold" ref="3" text="username"></label><input_text id="username" ref="8" value="ignacio"></input_text></p><p ref="5"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="1" value="ments"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="login"></button></div></div></div></body>
press login
click
6
null
stop
Click on Tab #2. <body ref="4"><div id="wrap" ref="7"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="9"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="1"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="12"><a id="ui-id-7" classes="ui-tabs-anchor" ref="8" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="10"><a id="ui-id-8" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="5"><a id="ui-id-9" classes="ui-tabs-anchor" ref="2" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="3"><p ref="11" text="laoreet quis venenatis. consectetur. feugiat scelerisque et. orci nibh maecenas. sem. sit viverra. tellus. viverra. sed. velit vitae diam orci."></p></div></div></div></body>
Click on Tab #2.
click
6
null
stop
Click on Tab #3. <body ref="7"><div id="wrap" ref="4"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="12"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="8"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-7" classes="ui-tabs-anchor" ref="6" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="10"><a id="ui-id-8" classes="ui-tabs-anchor" ref="5" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-9" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="1"><p ref="11" text="sit amet, pharetra tincidunt. sapien dapibus. pellentesque scelerisque egestas proin risus. tincidunt nibh. tellus praesent luctus consequat viverra eget. integer."></p></div></div></div></body>
Click on Tab #3.
click
3
null
stop
Click on Tab #3. <body ref="3"><div id="wrap" ref="12"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="2"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="5"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="8"><a id="ui-id-4" classes="ui-tabs-anchor" ref="1" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="10"><a id="ui-id-5" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-6" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="11"><p ref="9" text="ultrices lacus amet,. molestie. ac nisl,. suspendisse cras sit. consequat turpis proin arcu lobortis sed eget facilisi. turpis enim amet."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #3. <body ref="11"><div id="wrap" ref="1"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="3"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="4"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="5"><a id="ui-id-7" classes="ui-tabs-anchor" ref="10" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="6"><a id="ui-id-8" classes="ui-tabs-anchor" ref="9" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="12"><a id="ui-id-9" classes="ui-tabs-anchor" ref="8" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="2" text="volutpat turpis massa libero. porttitor suspendisse et. pretium. praesent diam. nisi, erat elementum proin quis. est etiam eu donec netus."></p></div></div></div></body>
Click on Tab #3.
click
8
null
stop
Click on Tab #2. <body ref="5"><div id="wrap" ref="6"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="2"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="4"><a id="ui-id-10" classes="ui-tabs-anchor" ref="11" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="9"><a id="ui-id-11" classes="ui-tabs-anchor" ref="3" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="1"><a id="ui-id-12" classes="ui-tabs-anchor" ref="7" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="12"><p ref="8" text="ullamcorper adipiscing orci diam. non vulputate aliquet commodo vestibulum, egestas sed purus sit in. id elementum. scelerisque. magna varius consequat."></p></div></div></div></body>
Click on Tab #2.
click
3
null
stop
Click on Tab #3. <body ref="10"><div id="wrap" ref="8"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="12"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="4"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="7"><a id="ui-id-1" classes="ui-tabs-anchor" ref="6" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="5"><a id="ui-id-2" classes="ui-tabs-anchor" ref="1" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-3" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="11"><p ref="9" text="morbi in nec massa lectus eget cras vivamus ultricies aliquam id est consectetur nunc, purus adipiscing id. pretium lorem. aenean."></p></div></div></div></body>
Click on Tab #3.
click
3
null
stop
Click on Tab #2. <body ref="4"><div id="wrap" ref="9"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="12"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="2"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="11"><a id="ui-id-4" classes="ui-tabs-anchor" ref="5" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="3"><a id="ui-id-5" classes="ui-tabs-anchor" ref="1" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="10"><a id="ui-id-6" classes="ui-tabs-anchor" ref="8" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="6" text="molestie blandit purus, purus ipsum ut penatibus risus maecenas id iaculis nisi et, nec morbi. mauris mi sollicitudin in at."></p></div></div></div></body>
Click on Tab #2.
click
1
null
stop
Click on Tab #3. <body ref="6"><div id="wrap" ref="9"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="1"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="12"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="5"><a id="ui-id-1" classes="ui-tabs-anchor" ref="4" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="8"><a id="ui-id-2" classes="ui-tabs-anchor" ref="11" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-3" classes="ui-tabs-anchor" ref="2" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="3"><p ref="10" text="in. dignissim interdum nunc tempus in leo pretium eget ipsum porttitor. id. nunc, orci justo commodo. ac nisl in vel."></p></div></div></div></body>
Click on Tab #3.
click
2
null
stop
Click on Tab #3. <body ref="7"><div id="wrap" ref="3"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="2"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="5"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="11"><a id="ui-id-7" classes="ui-tabs-anchor" ref="6" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="1"><a id="ui-id-8" classes="ui-tabs-anchor" ref="8" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="12"><a id="ui-id-9" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="9"><p ref="10" text="eleifend rutrum eu vitae vel. tristique. sodales. tellus fames bibendum. sed. leo est a amet euismod ultricies vulputate est. molestie."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #1. <body ref="8"><div id="wrap" ref="5"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="2"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="3"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="9"><a id="ui-id-1" classes="ui-tabs-anchor" ref="7" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="11"><a id="ui-id-2" classes="ui-tabs-anchor" ref="4" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="1"><a id="ui-id-3" classes="ui-tabs-anchor" ref="10" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="12"><p ref="6" text="neque, nec bibendum. sed in nibh donec nisl purus tempus sed adipiscing fermentum, sed vitae leo nibh sit et sit."></p></div></div></div></body>
Click on Tab #1.
click
7
null
stop
Click on Tab #2. <body ref="9"><div id="wrap" ref="8"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="7"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="11"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="5"><a id="ui-id-4" classes="ui-tabs-anchor" ref="3" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="6"><a id="ui-id-5" classes="ui-tabs-anchor" ref="2" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-6" classes="ui-tabs-anchor" ref="10" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="1"><p ref="12" text="blandit mattis. nulla enim, neque, mauris amet aliquam fringilla. cras pulvinar eget a tincidunt ut massa enim. facilisi lectus magnis."></p></div></div></div></body>
Click on Tab #2.
click
2
null
stop
Click on Tab #1. <body ref="6"><div id="wrap" ref="2"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="5"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="12"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="11"><a id="ui-id-4" classes="ui-tabs-anchor" ref="4" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="8"><a id="ui-id-5" classes="ui-tabs-anchor" ref="1" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="3"><a id="ui-id-6" classes="ui-tabs-anchor" ref="10" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="9" text="egestas convallis blandit. et nulla suscipit ullamcorper egestas leo ante amet congue rutrum pellentesque pellentesque amet blandit scelerisque a, cursus."></p></div></div></div></body>
Click on Tab #1.
click
4
null
stop
Click on Tab #3. <body ref="12"><div id="wrap" ref="3"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="4"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="8"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-7" classes="ui-tabs-anchor" ref="1" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="7"><a id="ui-id-8" classes="ui-tabs-anchor" ref="10" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-9" classes="ui-tabs-anchor" ref="11" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="5"><p ref="6" text="pulvinar malesuada vitae et porta donec duis pulvinar molestie quam fringilla erat a porttitor sagittis. etiam duis sit amet. lectus."></p></div></div></div></body>
Click on Tab #3.
click
11
null
stop
Click on Tab #2. <body ref="3"><div id="wrap" ref="8"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="11"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="9"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="2"><a id="ui-id-1" classes="ui-tabs-anchor" ref="4" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="5"><a id="ui-id-2" classes="ui-tabs-anchor" ref="1" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="12"><a id="ui-id-3" classes="ui-tabs-anchor" ref="10" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="6" text="nunc dolor sed. egestas. arcu ut. risus enim amet nulla cursus sit odio amet integer tempus, mi. augue purus eget."></p></div></div></div></body>
Click on Tab #2.
click
1
null
stop
Click on Tab #3. <body ref="6"><div id="wrap" ref="2"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="3"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="5"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="7"><a id="ui-id-13" classes="ui-tabs-anchor" ref="8" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="12"><a id="ui-id-14" classes="ui-tabs-anchor" ref="10" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="1"><a id="ui-id-15" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="9"><p ref="11" text="donec. neque vestibulum. eu. lorem eu eget tellus. ut. interdum. venenatis eget. egestas. ut mi, ut accumsan,. rhoncus vel pharetra."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #3. <body ref="8"><div id="wrap" ref="12"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="7"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="11"><a id="ui-id-4" classes="ui-tabs-anchor" ref="9" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="5"><a id="ui-id-5" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-6" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="1"><p ref="3" text="sit eu quisque in quis hendrerit faucibus lacus,. consectetur et. nunc egestas vitae, commodo est augue. molestie dui feugiat. sed."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #3. <body ref="12"><div id="wrap" ref="1"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="6"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="3"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="10"><a id="ui-id-10" classes="ui-tabs-anchor" ref="9" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="8"><a id="ui-id-11" classes="ui-tabs-anchor" ref="11" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-12" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="5"><p ref="2" text="amet elit senectus viverra. nec. venenatis. felis. eget pellentesque metus, habitant sed purus ipsum egestas mi. viverra egestas auctor eget."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #1. <body ref="12"><div id="wrap" ref="2"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="8"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="11"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="1"><a id="ui-id-1" classes="ui-tabs-anchor" ref="5" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-2" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-3" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="10" text="neque non. tortor maecenas lorem adipiscing pellentesque. tempus. diam gravida rhoncus nunc molestie semper ullamcorper vitae viverra etiam sed cursus."></p></div></div></div></body>,
Click on Tab #1.
click
1
null
continue
{click,1,} Click on Tab #1. <body ref="12"><div id="wrap" ref="2"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="8"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="11"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="1"><a id="ui-id-1" classes="ui-tabs-anchor" ref="5" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-2" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-3" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="10" text="neque non. tortor maecenas lorem adipiscing pellentesque. tempus. diam gravida rhoncus nunc molestie semper ullamcorper vitae viverra etiam sed cursus."></p></div></div></div></body>
Click on Tab #1.
click
5
null
stop
Click on Tab #1. <body ref="1"><div id="wrap" ref="4"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="6"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-10" classes="ui-tabs-anchor" ref="5" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="12"><a id="ui-id-11" classes="ui-tabs-anchor" ref="11" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="3"><a id="ui-id-12" classes="ui-tabs-anchor" ref="8" text="tab #3"></a></li></ul><div id="tabs-3" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="2"><p ref="9" text="tortor, lacus, in hendrerit suspendisse in vitae enim urna, dignissim. integer risus diam. quisque tempus tincidunt. sit. bibendum feugiat arcu."></p></div></div></div></body>
Click on Tab #1.
click
5
null
stop
Click on Tab #2. <body ref="6"><div id="wrap" ref="4"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="5"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="2"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="8"><a id="ui-id-10" classes="ui-tabs-anchor" ref="12" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="9"><a id="ui-id-11" classes="ui-tabs-anchor" ref="11" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="10"><a id="ui-id-12" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="1" text="hendrerit. ornare. nibh aliquet pellentesque lectus cursus quis vehicula scelerisque. odio tortor, lorem amet ornare non sed. sit praesent pretium."></p></div></div></div></body>
Click on Tab #2.
click
11
null
stop
Click on Tab #3. <body ref="7"><div id="wrap" ref="1"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="11"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-1" classes="ui-tabs-anchor" ref="3" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-2" classes="ui-tabs-anchor" ref="12" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-3" classes="ui-tabs-anchor" ref="6" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="8"><p ref="5" text="consectetur volutpat volutpat urna. ut. et. diam justo ac lectus laoreet enim, felis nec. amet rhoncus nulla tellus senectus. porttitor."></p></div></div></div></body>
Click on Tab #3.
click
6
null
stop
Click on Tab #2. <body ref="5"><div id="wrap" ref="2"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="10"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="8"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="1"><a id="ui-id-10" classes="ui-tabs-anchor" ref="7" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="12"><a id="ui-id-11" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="3"><a id="ui-id-12" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="9"><p ref="11" text="facilisis fames egestas feugiat. ultrices cursus. at adipiscing. lobortis ultrices malesuada netus feugiat. consectetur purus faucibus sit nisl dictumst nunc."></p></div></div></div></body>
Click on Tab #2.
click
6
null
stop
Click on Tab #3. <body ref="10"><div id="wrap" ref="5"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="1"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="9"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="8"><a id="ui-id-10" classes="ui-tabs-anchor" ref="11" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="2"><a id="ui-id-11" classes="ui-tabs-anchor" ref="3" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="6"><a id="ui-id-12" classes="ui-tabs-anchor" ref="4" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="12" text="gravida enim, mi tempor lobortis posuere molestie sit tincidunt amet, nisi orci. massa. et leo, tristique arcu tempor eget. dui."></p></div></div></div></body>
Click on Tab #3.
click
4
null
stop
Click on Tab #2. <body ref="9"><div id="wrap" ref="5"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="11"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="7"><a id="ui-id-10" classes="ui-tabs-anchor" ref="1" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="6"><a id="ui-id-11" classes="ui-tabs-anchor" ref="8" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-12" classes="ui-tabs-anchor" ref="3" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="2"><p ref="12" text="fermentum sagittis vestibulum orci. dictum pellentesque etiam. leo, non ultricies. integer sed vel dolor consectetur integer. dolor tincidunt praesent egestas."></p></div></div></div></body>
Click on Tab #2.
click
8
null
stop
Click on Tab #2. <body ref="5"><div id="wrap" ref="10"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="8"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="11"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="6"><a id="ui-id-1" classes="ui-tabs-anchor" ref="4" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="3"><a id="ui-id-2" classes="ui-tabs-anchor" ref="7" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="12"><a id="ui-id-3" classes="ui-tabs-anchor" ref="1" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="9"><p ref="2" text="ac quis amet nunc. nulla habitasse diam fusce arcu faucibus. pulvinar egestas consectetur nunc mattis. orci bibendum. nisl sapien tincidunt."></p></div></div></div></body>
Click on Tab #2.
click
7
null
stop
Click on Tab #1. <body ref="10"><div id="wrap" ref="7"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="6"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="8"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="3"><a id="ui-id-7" classes="ui-tabs-anchor" ref="2" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="4"><a id="ui-id-8" classes="ui-tabs-anchor" ref="9" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="12"><a id="ui-id-9" classes="ui-tabs-anchor" ref="11" text="tab #3"></a></li></ul><div id="tabs-3" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="5"><p ref="1" text="tellus neque consequat, neque nisl risus leo ut feugiat. ac nulla nunc. dui in. arcu fringilla rhoncus eu. scelerisque eget."></p></div></div></div></body>
Click on Tab #1.
click
2
null
stop
Click on Tab #2. <body ref="5"><div id="wrap" ref="10"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="4"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="2"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="9"><a id="ui-id-7" classes="ui-tabs-anchor" ref="3" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="8"><a id="ui-id-8" classes="ui-tabs-anchor" ref="6" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="12"><a id="ui-id-9" classes="ui-tabs-anchor" ref="11" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="1" text="tincidunt tellus sem nulla leo et. vitae eu nisi dui quam. pellentesque et. a velit egestas a, laoreet. nisl. nibh."></p></div></div></div></body>
Click on Tab #2.
click
6
null
stop
Click on Tab #2. <body ref="1"><div id="wrap" ref="3"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="4"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="12"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="6"><a id="ui-id-4" classes="ui-tabs-anchor" ref="10" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="5"><a id="ui-id-5" classes="ui-tabs-anchor" ref="7" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="8"><a id="ui-id-6" classes="ui-tabs-anchor" ref="9" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="11"><p ref="2" text="odio et viverra libero. felis ipsum amet feugiat magna tempus et. gravida. felis porttitor in euismod velit enim, vulputate phasellus."></p></div></div></div></body>
Click on Tab #2.
click
7
null
stop
Click on Tab #2. <body ref="4"><div id="wrap" ref="12"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="5"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="6"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="7"><a id="ui-id-4" classes="ui-tabs-anchor" ref="10" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="2"><a id="ui-id-5" classes="ui-tabs-anchor" ref="1" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="9"><a id="ui-id-6" classes="ui-tabs-anchor" ref="8" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="3"><p ref="11" text="ipsum tellus. quam sit elementum. iaculis laoreet diam nunc, eget. fames et luctus dui egestas. tincidunt egestas est, in egestas."></p></div></div></div></body>
Click on Tab #2.
click
1
null
stop
Click on Tab #2. <body ref="1"><div id="wrap" ref="12"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="8"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="10"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="4"><a id="ui-id-7" classes="ui-tabs-anchor" ref="6" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-8" classes="ui-tabs-anchor" ref="9" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="3"><a id="ui-id-9" classes="ui-tabs-anchor" ref="2" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="5"><p ref="11" text="nunc id consectetur sed pellentesque ut magnis feugiat cursus id. molestie accumsan maecenas. proin etiam morbi dictumst in netus. velit."></p></div></div></div></body>
Click on Tab #2.
click
9
null
stop
Click on Tab #1. <body ref="12"><div id="wrap" ref="1"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="3"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="2"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="7"><a id="ui-id-4" classes="ui-tabs-anchor" ref="6" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="8"><a id="ui-id-5" classes="ui-tabs-anchor" ref="11" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="4"><a id="ui-id-6" classes="ui-tabs-anchor" ref="10" text="tab #3"></a></li></ul><div id="tabs-3" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="5"><p ref="9" text="tortor, volutpat bibendum eu,. at. ullamcorper pharetra elit. vel in faucibus nec. sem enim, lectus donec. etiam nisi,. eu pulvinar."></p></div></div></div></body>
Click on Tab #1.
click
6
null
stop
Click on Tab #2. <body ref="1"><div id="wrap" ref="3"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="12"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="6"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="8"><a id="ui-id-10" classes="ui-tabs-anchor" ref="10" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="5"><a id="ui-id-11" classes="ui-tabs-anchor" ref="2" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="7"><a id="ui-id-12" classes="ui-tabs-anchor" ref="9" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="4"><p ref="11" text="facilisi nibh. duis ultricies. libero. nulla in scelerisque bibendum ut. etiam. lobortis posuere arcu amet, tellus natoque in nibh proin."></p></div></div></div></body>
Click on Tab #2.
click
2
null
stop
{click,4,} Enter 07/21/2019 as the date <body ref="1"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="2"><input_date id="tt" ref="4"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 07/21/2019 as the date
keydown
4
2019-07-21
stop
click submit <body ref="1"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="2"><input_date id="tt" ref="4" value="2019-07-21"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>
click submit
click
3
null
stop
{click,1,} Enter 11/12/2015 as the date <body ref="4"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="3"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 11/12/2015 as the date
keydown
1
2015-11-12
stop
click submit <body ref="4"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="3"><input_date id="tt" ref="1" value="2015-11-12"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>
click submit
click
6
null
stop
{click,6,} Enter 06/03/2019 as the date <body ref="1"><div id="wrap" ref="2"><div id="area" ref="4"><div id="form" ref="3"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 06/03/2019 as the date
keydown
6
2019-06-03
stop
{click,2,} Enter 10/20/2013 as the date <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 10/20/2013 as the date
keydown
2
2013-10-20
stop
{click,3,} Enter 07/27/2011 as the date <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 07/27/2011 as the date
keydown
3
2011-07-27
stop
click submit <body ref="1"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_date id="tt" ref="3" value="2011-07-27"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>
click submit
click
2
null
stop
{click,2,} Enter 10/06/2018 as the date <body ref="6"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="5"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 10/06/2018 as the date
keydown
2
2018-10-06
stop
{click,4,} Enter 12/16/2013 as the date <body ref="1"><div id="wrap" ref="2"><div id="area" ref="3"><div id="form" ref="5"><input_date id="tt" ref="4"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 12/16/2013 as the date
keydown
4
2013-12-16
stop
{click,2,} Enter 06/19/2018 as the date <body ref="1"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="3"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 06/19/2018 as the date
keydown
2
2018-06-19
stop
{click,2,} Enter 07/01/2017 as the date <body ref="6"><div id="wrap" ref="5"><div id="area" ref="3"><div id="form" ref="4"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 07/01/2017 as the date
keydown
2
2017-07-01
stop
{click,6,} Enter 01/31/2015 as the date <body ref="4"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="3"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 01/31/2015 as the date
keydown
6
2015-01-31
stop
click submit <body ref="5"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="2"><input_date id="tt" ref="3" value="2013-01-13"></input_date><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,1,} Enter 10/28/2010 as the date <body ref="3"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="2"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 10/28/2010 as the date
keydown
1
2010-10-28
stop
{click,2,} Enter 08/06/2013 as the date <body ref="1"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="6"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 08/06/2013 as the date
keydown
2
2013-08-06
stop
{click,3,} Enter 06/05/2011 as the date <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="1"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 06/05/2011 as the date
keydown
3
2011-06-05
stop
{click,3,} Enter 10/29/2016 as the date <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="6"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 10/29/2016 as the date
keydown
3
2016-10-29
stop
{click,5,} Enter 08/16/2019 as the date <body ref="3"><div id="wrap" ref="2"><div id="area" ref="4"><div id="form" ref="6"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 08/16/2019 as the date
keydown
5
2019-08-16
stop
{click,3,} Enter 02/11/2017 as the date <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="2"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 02/11/2017 as the date
keydown
3
2017-02-11
stop
{click,5,} Enter 02/08/2019 as the date <body ref="1"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="2"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 02/08/2019 as the date
keydown
5
2019-02-08
stop
{click,1,} Enter 03/21/2017 as the date <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="3"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 03/21/2017 as the date
keydown
1
2017-03-21
stop
Select all the shades of green <body ref="6"><div id="wrap" ref="3"><div id="area" ref="15"><span ref="11"></span><span ref="8"></span><span ref="7"></span><span classes="selected" ref="9"></span><span classes="selected" ref="13"></span><span ref="14"></span><span classes="selected" ref="12"></span><span ref="2"></span><span ref="1"></span><span ref="10"></span><span ref="4"></span><span ref="16"></span><button id="submit" classes="secondary-action" ref="5" text="submit"></button></div></div></body>
Select all the shades of green
click
5
null
stop
Select all the shades of red <body ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><span ref="12"></span><span ref="16"></span><span ref="7"></span><span classes="selected" ref="4"></span><span ref="11"></span><span ref="6"></span><span ref="13"></span><span classes="selected" ref="1"></span><span ref="10"></span><span classes="selected" ref="8"></span><span ref="15"></span><span ref="14"></span><button id="submit" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
Select all the shades of red
click
9
null
stop
Select all the shades of red <body ref="5"><div id="wrap" ref="8"><div id="area" ref="9"><span classes="selected" ref="10"></span><span classes="selected" ref="6"></span><span ref="7"></span><span ref="11"></span><span ref="16"></span><span classes="selected" ref="15"></span><span ref="13"></span><span ref="2"></span><span ref="1"></span><span ref="12"></span><span ref="3"></span><span classes="selected" ref="14"></span><button id="submit" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
Select all the shades of red
click
4
null
stop
Select all the shades of blue <body ref="15"><div id="wrap" ref="2"><div id="area" ref="11"><span ref="14"></span><span ref="12"></span><span classes="selected" ref="16"></span><span ref="6"></span><span ref="5"></span><span classes="selected" ref="3"></span><span ref="7"></span><span classes="selected" ref="13"></span><span ref="4"></span><span ref="9"></span><span ref="1"></span><span ref="10"></span><button id="submit" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
Select all the shades of blue
click
8
null
stop
Select all the shades of green <body ref="1"><div id="wrap" ref="14"><div id="area" ref="12"><span classes="selected" ref="11"></span><span ref="9"></span><span classes="selected" ref="4"></span><span classes="selected" ref="16"></span><span ref="13"></span><span ref="2"></span><span classes="selected" ref="3"></span><span ref="5"></span><span ref="7"></span><span ref="6"></span><span ref="10"></span><span ref="8"></span><button id="submit" classes="secondary-action" ref="15" text="submit"></button></div></div></body>
Select all the shades of green
click
15
null
stop
Select all the shades of red <body ref="1"><div id="wrap" ref="14"><div id="area" ref="9"><span ref="4"></span><span ref="11"></span><span classes="selected" ref="16"></span><span ref="6"></span><span ref="3"></span><span ref="13"></span><span ref="12"></span><span ref="8"></span><span ref="15"></span><span classes="selected" ref="7"></span><span ref="2"></span><span ref="10"></span><button id="submit" classes="secondary-action" ref="5" text="submit"></button></div></div></body>
Select all the shades of red
click
5
null
stop