{ // 获取包含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":"Select 6 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":201,"cells":{"history_episodes":{"kind":"string","value":" Select 3 with the spinner
, "},"instruction":{"kind":"string","value":"Select 3 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":202,"cells":{"history_episodes":{"kind":"string","value":" Select -3 with the spinner
, "},"instruction":{"kind":"string","value":"Select -3 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":203,"cells":{"history_episodes":{"kind":"string","value":" Select 6 with the spinner
, "},"instruction":{"kind":"string","value":"Select 6 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":204,"cells":{"history_episodes":{"kind":"string","value":" Select -9 with the spinner
, "},"instruction":{"kind":"string","value":"Select -9 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":205,"cells":{"history_episodes":{"kind":"string","value":" Select -9 with the spinner
, "},"instruction":{"kind":"string","value":"Select -9 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":206,"cells":{"history_episodes":{"kind":"string","value":" Select -4 with the spinner
, "},"instruction":{"kind":"string","value":"Select -4 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":207,"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":208,"cells":{"history_episodes":{"kind":"string","value":" Select -4 with the spinner
, "},"instruction":{"kind":"string","value":"Select -4 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":209,"cells":{"history_episodes":{"kind":"string","value":" Select -2 with the spinner
, "},"instruction":{"kind":"string","value":"Select -2 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":210,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":211,"cells":{"history_episodes":{"kind":"string","value":" Select -4 with the spinner
, "},"instruction":{"kind":"string","value":"Select -4 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":212,"cells":{"history_episodes":{"kind":"string","value":" Select -5 with the spinner
, "},"instruction":{"kind":"string","value":"Select -5 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":213,"cells":{"history_episodes":{"kind":"string","value":" Select -3 with the spinner
, "},"instruction":{"kind":"string","value":"Select -3 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":214,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":215,"cells":{"history_episodes":{"kind":"string","value":" Select 2 with the spinner
, "},"instruction":{"kind":"string","value":"Select 2 with the spinner"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":216,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"button\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"button\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":217,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":218,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":219,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":220,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":221,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":222,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":223,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":224,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":225,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":226,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"button\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"button\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":227,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":228,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":229,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":230,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":231,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":232,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"button\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"button\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":233,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":234,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":235,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":236,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":237,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":238,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":239,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":240,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":241,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"button\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"button\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":242,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":243,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"text\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"text\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":244,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"textarea\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"textarea\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":245,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"checkbox\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"checkbox\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":246,"cells":{"history_episodes":{"kind":"string","value":" Click on a \"radio\" widget.
, "},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":24,"string":"24"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":247,"cells":{"history_episodes":{"kind":"string","value":"{click,24,} Click on a \"radio\" widget.
"},"instruction":{"kind":"string","value":"Click on a \"radio\" widget. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":248,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 10:38 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:38 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"22:38"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":249,"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":250,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 2:25 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:25 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"14:25"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":251,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":252,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 6:32 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 6:32 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"18:32"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":253,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 2:45 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:45 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"14:45"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":254,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 10:39 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:39 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"10:39"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":255,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 11:30 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 11:30 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"11:30"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":256,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 4:52 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 4:52 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"04:52"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":257,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 6:47 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 6:47 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"06:47"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":258,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 2:29 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:29 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"02:29"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":259,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 12:09 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:09 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"12:09"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":260,"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":261,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 2:19 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:19 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"02:19"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":262,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 10:39 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:39 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"10:39"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":263,"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":264,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 7:14 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 7:14 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"07:14"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":265,"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":266,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 9:57 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 9:57 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"09:57"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":267,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 4:01 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 4:01 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"04:01"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":268,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 4:21 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 4:21 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"04:21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":269,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 5:41 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 5:41 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"05:41"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":270,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 3:21 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:21 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"03:21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":271,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 12:11 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:11 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"00:11"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":272,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 2:26 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:26 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"02:26"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":273,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 7:11 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 7:11 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"07:11"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":274,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":275,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 2:04 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:04 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"14:04"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":276,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 12:45 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:45 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"12:45"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":277,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"non\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"non\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":23,"string":"23"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":278,"cells":{"history_episodes":{"kind":"string","value":"{click,23,} Switch between the tabs to find the link \"non\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"non\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":279,"cells":{"history_episodes":{"kind":"string","value":"{click,23,}{click,10,} Switch between the tabs to find the link \"non\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"non\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":23,"string":"23"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":280,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"non\".

, "},"instruction":{"kind":"string","value":"Click on the link \"non\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":281,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"nibh\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"nibh\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":20,"string":"20"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":282,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"nibh\".

, "},"instruction":{"kind":"string","value":"Click on the link \"nibh\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":283,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"egestas\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"egestas\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":29,"string":"29"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":284,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"egestas\".

, "},"instruction":{"kind":"string","value":"Click on the link \"egestas\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":26,"string":"26"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":285,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"risus\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"risus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":26,"string":"26"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":286,"cells":{"history_episodes":{"kind":"string","value":"{click,26,} Switch between the tabs to find the link \"risus\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"risus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":287,"cells":{"history_episodes":{"kind":"string","value":"{click,26,}{click,8,} Switch between the tabs to find the link \"risus\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"risus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":26,"string":"26"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":288,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"risus\".

, "},"instruction":{"kind":"string","value":"Click on the link \"risus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":289,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"purus\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"purus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":24,"string":"24"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":290,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"purus\".

, "},"instruction":{"kind":"string","value":"Click on the link \"purus\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":291,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"enim,\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"enim,\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":25,"string":"25"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":292,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"enim,\".

, "},"instruction":{"kind":"string","value":"Click on the link \"enim,\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":293,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"tincidunt\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"tincidunt\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":294,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"tincidunt\".

, "},"instruction":{"kind":"string","value":"Click on the link \"tincidunt\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":295,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"commodo,\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"commodo,\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":296,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"commodo,\".

, "},"instruction":{"kind":"string","value":"Click on the link \"commodo,\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":297,"cells":{"history_episodes":{"kind":"string","value":" Switch between the tabs to find the link \"mauris\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"mauris\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":27,"string":"27"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":298,"cells":{"history_episodes":{"kind":"string","value":"{click,27,} Switch between the tabs to find the link \"mauris\".

, "},"instruction":{"kind":"string","value":"Switch between the tabs to find the link \"mauris\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":299,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"mauris\".

, "},"instruction":{"kind":"string","value":"Click on the link \"mauris\"."},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":23,"string":"23"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":2,"numItemsPerPage":100,"numTotalItems":40186,"offset":200,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjE0MTE4Mywic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2MTQ0NzgzLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.EBY-4-BpVedZ2b-ShXhSAUDDTArRhTGra6rPC3SWgW7VmpuQXpImCAQSHDMegnZPoiXH8k_TOz28dCvXiCEyAw","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
Select 6 with the spinner <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"><label ref="9" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="10"><input_text id="spinner" classes="ui-spinner-input" ref="5" value="1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="7"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="8"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="6"></span></a></span><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select 6 with the spinner
click
5
null
stop
Select 3 with the spinner <body ref="7"><div id="wrap" ref="1"><div id="area" ref="4"><label ref="9" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="8"><input_text id="spinner" classes="ui-spinner-input" ref="3" value="1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="6"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="5"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="10"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="2"></span></a></span><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select 3 with the spinner
click
3
null
stop
Select -3 with the spinner <body ref="1"><div id="wrap" ref="8"><div id="area" ref="9"><label ref="5" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="6"><input_text id="spinner" classes="ui-spinner-input" ref="2" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="7"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="10"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="4"></span></a></span><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select -3 with the spinner
click
2
null
stop
Select 6 with the spinner <body ref="4"><div id="wrap" ref="5"><div id="area" ref="8"><label ref="10" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="7"><input_text id="spinner" classes="ui-spinner-input" ref="1" value="1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="6"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="2"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="9"></span></a></span><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select 6 with the spinner
click
1
null
stop
Select -9 with the spinner <body ref="1"><div id="wrap" ref="2"><div id="area" ref="9"><label ref="6" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="8"><input_text id="spinner" classes="ui-spinner-input" ref="3" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="7"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="4"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="11"></span></a></span><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select -9 with the spinner
click
3
null
stop
Select -9 with the spinner <body ref="8"><div id="wrap" ref="6"><div id="area" ref="5"><label ref="2" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="11"><input_text id="spinner" classes="ui-spinner-input" ref="7" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="4"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="9"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select -9 with the spinner
click
7
null
stop
Select -4 with the spinner <body ref="6"><div id="wrap" ref="3"><div id="area" ref="4"><label ref="9" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="1"><input_text id="spinner" classes="ui-spinner-input" ref="7" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="11"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="8"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select -4 with the spinner
click
7
null
stop
click submit <body ref="6"><div id="wrap" ref="3"><div id="area" ref="4"><label ref="9" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="1"><input_text id="spinner" classes="ui-spinner-input" ref="7" value="-4"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="11"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="8"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>
click submit
click
2
null
stop
Select -4 with the spinner <body ref="6"><div id="wrap" ref="7"><div id="area" ref="10"><label ref="1" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="2"><input_text id="spinner" classes="ui-spinner-input" ref="8" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="11"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="4"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="5"></span></a></span><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select -4 with the spinner
click
8
null
stop
Select -2 with the spinner <body ref="1"><div id="wrap" ref="10"><div id="area" ref="9"><label ref="7" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="4"><input_text id="spinner" classes="ui-spinner-input" ref="6" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="5"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="2"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="11"></span></a></span><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select -2 with the spinner
click
6
null
stop
click submit <body ref="1"><div id="wrap" ref="10"><div id="area" ref="9"><label ref="7" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="4"><input_text id="spinner" classes="ui-spinner-input" ref="6" value="-2"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="3"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="5"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="2"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="11"></span></a></span><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
click submit
click
8
null
stop
Select -4 with the spinner <body ref="11"><div id="wrap" ref="7"><div id="area" ref="1"><label ref="6" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="4"><input_text id="spinner" classes="ui-spinner-input" ref="2" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="9"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="3"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select -4 with the spinner
click
2
null
stop
Select -5 with the spinner <body ref="4"><div id="wrap" ref="1"><div id="area" ref="9"><label ref="2" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="7"><input_text id="spinner" classes="ui-spinner-input" ref="11" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="10"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="8"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="6"></span></a></span><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select -5 with the spinner
click
11
null
stop
Select -3 with the spinner <body ref="11"><div id="wrap" ref="1"><div id="area" ref="6"><label ref="3" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="4"><input_text id="spinner" classes="ui-spinner-input" ref="2" value="-1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="7"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="9"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select -3 with the spinner
click
2
null
stop
click submit <body ref="11"><div id="wrap" ref="1"><div id="area" ref="6"><label ref="3" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="4"><input_text id="spinner" classes="ui-spinner-input" ref="2" value="-3"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="5"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="7"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="9"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
click submit
click
8
null
stop
Select 2 with the spinner <body ref="4"><div id="wrap" ref="3"><div id="area" ref="7"><label ref="5" text="select a value:"></label><span classes="ui-spinner ui-corner-all ui-widget ui-widget-content" ref="2"><input_text id="spinner" classes="ui-spinner-input" ref="9" value="1"></input_text><a classes="ui-button ui-widget ui-spinner-button ui-spinner-up ui-corner-tr ui-button-icon-only" ref="1"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-n" ref="8"></span></a><a classes="ui-button ui-widget ui-spinner-button ui-spinner-down ui-corner-br ui-button-icon-only" ref="11"><span classes="ui-button-icon ui-icon ui-icon-triangle-1-s" ref="10"></span></a></span><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select 2 with the spinner
click
9
null
stop
Click on a "button" widget. <body ref="7"><div id="wrap" ref="9"><div id="area" ref="5"><div classes="widget" ref="14"><textarea ref="8" value="nn" text="nn"></textarea></div><div classes="widget" ref="1"><input_text ref="3" value="cs4"></input_text></div><div classes="widget" ref="10"><button ref="6" text="hdftn"></button></div><div classes="widget" ref="11"><label ref="2"><input_radio ref="13" value="false"></input_radio><t ref="-11" text="m5zbb"></t></label></div><div classes="widget" ref="15"><label ref="12"><input_radio ref="4" value="false"></input_radio><t ref="-12" text="3yw"></t></label></div></div></div></body>
Click on a "button" widget.
click
6
null
stop
Click on a "textarea" widget. <body ref="6"><div id="wrap" ref="9"><div id="area" ref="2"><div classes="widget" ref="14"><label ref="13"><input type="checkbox" ref="12" value="false"></input><t ref="-11" text="eka"></t></label></div><div classes="widget" ref="11"><textarea ref="3" value="n" text="n"></textarea></div><div classes="widget" ref="5"><input_text ref="8" value="ku"></input_text></div><div classes="widget" ref="10"><button ref="15" text="bdeqg"></button></div><div classes="widget" ref="4"><label ref="1"><input type="checkbox" ref="7" value="false"></input><t ref="-12" text="e"></t></label></div></div></div></body>
Click on a "textarea" widget.
click
3
null
stop
Click on a "checkbox" widget. <body ref="10"><div id="wrap" ref="5"><div id="area" ref="6"><div classes="widget" ref="1"><label ref="8"><input_radio ref="12" value="false"></input_radio><t ref="-16" text="mv"></t></label></div><div classes="widget" ref="9"><label ref="2"><input type="checkbox" ref="7" value="true"></input><t ref="-17" text="n"></t></label></div><div classes="widget" ref="11"><input_text ref="13" value="i"></input_text></div><div classes="widget" ref="4"><label ref="3"><input_radio ref="10" value="false"></input_radio><t ref="-18" text="qv"></t></label></div><div classes="widget" ref="5"><button ref="6" text="m"></button></div></div></div></body>
Click on a "checkbox" widget.
click
7
null
stop
Click on a "radio" widget. <body ref="15"><div id="wrap" ref="14"><div id="area" ref="5"><div classes="widget" ref="13"><label ref="6"><input_radio ref="1" value="true"></input_radio><t ref="-11" text="w7"></t></label></div><div classes="widget" ref="11"><input_text ref="8" value="8ifnh"></input_text></div><div classes="widget" ref="3"><button ref="9" text="h"></button></div><div classes="widget" ref="2"><button ref="4" text="txuep"></button></div><div classes="widget" ref="12"><label ref="10"><input_radio ref="7" value="false"></input_radio><t ref="-12" text="dkyet"></t></label></div></div></div></body>
Click on a "radio" widget.
click
1
null
stop
Click on a "checkbox" widget. <body ref="2"><div id="wrap" ref="8"><div id="area" ref="4"><div classes="widget" ref="14"><textarea ref="1" value="qh3" text="qh3"></textarea></div><div classes="widget" ref="10"><input_text ref="3" value="tsnm"></input_text></div><div classes="widget" ref="15"><textarea ref="6" value="qiytp" text="qiytp"></textarea></div><div classes="widget" ref="11"><label ref="13"><input type="checkbox" ref="7" value="true"></input><t ref="-11" text="cd7wu"></t></label></div><div classes="widget" ref="9"><label ref="5"><input type="checkbox" ref="12" value="false"></input><t ref="-12" text="7e"></t></label></div></div></div></body>
Click on a "checkbox" widget.
click
7
null
stop
Click on a "text" widget. <body ref="5"><div id="wrap" ref="7"><div id="area" ref="12"><div classes="widget" ref="14"><input_text ref="3" value="hbxdk"></input_text></div><div classes="widget" ref="13"><label ref="8"><input_radio ref="10" value="false"></input_radio><t ref="-11" text="u"></t></label></div><div classes="widget" ref="2"><button ref="11" text="bnn6e"></button></div><div classes="widget" ref="1"><button ref="6" text="ob53n"></button></div><div classes="widget" ref="9"><label ref="4"><input type="checkbox" ref="15" value="false"></input><t ref="-12" text="7f"></t></label></div></div></div></body>
Click on a "text" widget.
click
3
null
stop
Click on a "textarea" widget. <body ref="4"><div id="wrap" ref="10"><div id="area" ref="11"><div classes="widget" ref="8"><input_text ref="3" value="g05"></input_text></div><div classes="widget" ref="2"><textarea ref="14" value="h" text="h"></textarea></div><div classes="widget" ref="9"><input_text ref="5" value="x"></input_text></div><div classes="widget" ref="13"><label ref="6"><input_radio ref="12" value="false"></input_radio><t ref="-6" text="xkrx"></t></label></div><div classes="widget" ref="7"><button ref="1" text="b"></button></div></div></div></body>
Click on a "textarea" widget.
click
14
null
stop
Click on a "text" widget. <body ref="10"><div id="wrap" ref="2"><div id="area" ref="6"><div classes="widget" ref="14"><label ref="9"><input_radio ref="4" value="false"></input_radio><t ref="-23" text="he7"></t></label></div><div classes="widget" ref="13"><input_text ref="7" value="ybbm"></input_text></div><div classes="widget" ref="15"><input_text ref="8" value="ux"></input_text></div><div classes="widget" ref="3"><textarea ref="1" value="39" text="39"></textarea></div><div classes="widget" ref="5"><label ref="11"><input_radio ref="12" value="false"></input_radio><t ref="-24" text="zd27"></t></label></div></div></div></body>
Click on a "text" widget.
click
7
null
stop
Click on a "textarea" widget. <body ref="9"><div id="wrap" ref="5"><div id="area" ref="12"><div classes="widget" ref="10"><textarea ref="11" value="m8z" text="m8z"></textarea></div><div classes="widget" ref="2"><input_text ref="4" value="tn"></input_text></div><div classes="widget" ref="13"><label ref="15"><input_radio ref="8" value="false"></input_radio><t ref="-11" text="ioo"></t></label></div><div classes="widget" ref="6"><label ref="14"><input type="checkbox" ref="1" value="false"></input><t ref="-12" text="u"></t></label></div><div classes="widget" ref="7"><button ref="3" text="uwg"></button></div></div></div></body>
Click on a "textarea" widget.
click
11
null
stop
Click on a "checkbox" widget. <body ref="13"><div id="wrap" ref="6"><div id="area" ref="4"><div classes="widget" ref="5"><textarea ref="14" value="kkk" text="kkk"></textarea></div><div classes="widget" ref="10"><label ref="2"><input type="checkbox" ref="12" value="false"></input><t ref="-11" text="ho"></t></label></div><div classes="widget" ref="7"><label ref="1"><input type="checkbox" ref="8" value="true"></input><t ref="-12" text="wb"></t></label></div><div classes="widget" ref="11"><input_text ref="9" value="8k"></input_text></div><div classes="widget" ref="3"><textarea ref="15" value="fedik" text="fedik"></textarea></div></div></div></body>
Click on a "checkbox" widget.
click
8
null
stop
Click on a "button" widget. <body ref="3"><div id="wrap" ref="13"><div id="area" ref="6"><div classes="widget" ref="2"><textarea ref="4" value="obkzi" text="obkzi"></textarea></div><div classes="widget" ref="9"><label ref="12"><input_radio ref="11" value="false"></input_radio><t ref="-11" text="ysff"></t></label></div><div classes="widget" ref="10"><label ref="5"><input_radio ref="15" value="false"></input_radio><t ref="-12" text="a"></t></label></div><div classes="widget" ref="14"><button ref="7" text="rlqhe"></button></div><div classes="widget" ref="8"><button ref="1" text="h4dwn"></button></div></div></div></body>
Click on a "button" widget.
click
7
null
stop
Click on a "radio" widget. <body ref="10"><div id="wrap" ref="14"><div id="area" ref="7"><div classes="widget" ref="8"><input_text ref="5" value="u2h"></input_text></div><div classes="widget" ref="4"><input_text ref="1" value="zh0"></input_text></div><div classes="widget" ref="3"><label ref="9"><input_radio ref="11" value="true"></input_radio><t ref="-6" text="tw"></t></label></div><div classes="widget" ref="12"><button ref="13" text="wctw"></button></div><div classes="widget" ref="6"><input_text ref="2" value="u"></input_text></div></div></div></body>
Click on a "radio" widget.
click
11
null
stop
Click on a "checkbox" widget. <body ref="2"><div id="wrap" ref="1"><div id="area" ref="13"><div classes="widget" ref="5"><input_text ref="12" value="v4d"></input_text></div><div classes="widget" ref="3"><button ref="8" text="u"></button></div><div classes="widget" ref="10"><label ref="15"><input type="checkbox" ref="14" value="true"></input><t ref="-11" text="v04"></t></label></div><div classes="widget" ref="7"><textarea ref="9" value="9qn" text="9qn"></textarea></div><div classes="widget" ref="6"><label ref="4"><input_radio ref="11" value="false"></input_radio><t ref="-12" text="0ho"></t></label></div></div></div></body>
Click on a "checkbox" widget.
click
14
null
stop
Click on a "text" widget. <body ref="2"><div id="wrap" ref="6"><div id="area" ref="14"><div classes="widget" ref="11"><input_text ref="4" value="x6sh"></input_text></div><div classes="widget" ref="15"><button ref="13" text="7r"></button></div><div classes="widget" ref="5"><input_text ref="3" value="ykj"></input_text></div><div classes="widget" ref="8"><label ref="9"><input_radio ref="7" value="false"></input_radio><t ref="-11" text="5okf"></t></label></div><div classes="widget" ref="10"><label ref="1"><input type="checkbox" ref="12" value="false"></input><t ref="-12" text="ahrv"></t></label></div></div></div></body>
Click on a "text" widget.
click
4
null
stop
Click on a "checkbox" widget. <body ref="15"><div id="wrap" ref="12"><div id="area" ref="4"><div classes="widget" ref="6"><textarea ref="13" value="ex4" text="ex4"></textarea></div><div classes="widget" ref="3"><label ref="1"><input type="checkbox" ref="10" value="true"></input><t ref="-16" text="xmg"></t></label></div><div classes="widget" ref="5"><button ref="14" text="vc"></button></div><div classes="widget" ref="9"><label ref="2"><input_radio ref="7" value="false"></input_radio><t ref="-17" text="f97"></t></label></div><div classes="widget" ref="8"><label ref="11"><input type="checkbox" ref="15" value="false"></input><t ref="-18" text="rijq5"></t></label></div></div></div></body>
Click on a "checkbox" widget.
click
10
null
stop
Click on a "radio" widget. <body ref="13"><div id="wrap" ref="11"><div id="area" ref="6"><div classes="widget" ref="14"><label ref="1"><input type="checkbox" ref="5" value="false"></input><t ref="-16" text="0s7"></t></label></div><div classes="widget" ref="10"><label ref="7"><input type="checkbox" ref="8" value="false"></input><t ref="-17" text="pycvb"></t></label></div><div classes="widget" ref="9"><label ref="3"><input_radio ref="2" value="true"></input_radio><t ref="-18" text="t"></t></label></div><div classes="widget" ref="12"><input_text ref="4" value="ittah"></input_text></div><div classes="widget" ref="13"><input_text ref="11" value="zafc"></input_text></div></div></div></body>
Click on a "radio" widget.
click
2
null
stop
Click on a "button" widget. <body ref="4"><div id="wrap" ref="8"><div id="area" ref="14"><div classes="widget" ref="10"><button ref="3" text="hm"></button></div><div classes="widget" ref="1"><label ref="2"><input_radio ref="12" value="false"></input_radio><t ref="-11" text="i7i"></t></label></div><div classes="widget" ref="15"><input_text ref="13" value="hbnz"></input_text></div><div classes="widget" ref="11"><button ref="5" text="j"></button></div><div classes="widget" ref="7"><label ref="9"><input type="checkbox" ref="6" value="false"></input><t ref="-12" text="pj9"></t></label></div></div></div></body>
Click on a "button" widget.
click
3
null
stop
Click on a "checkbox" widget. <body ref="5"><div id="wrap" ref="1"><div id="area" ref="3"><div classes="widget" ref="2"><label ref="4"><input type="checkbox" ref="10" value="true"></input><t ref="-11" text="bkh"></t></label></div><div classes="widget" ref="8"><label ref="11"><input type="checkbox" ref="13" value="false"></input><t ref="-12" text="4p"></t></label></div><div classes="widget" ref="12"><input_text ref="9" value="d9u"></input_text></div><div classes="widget" ref="14"><button ref="15" text="ie"></button></div><div classes="widget" ref="6"><button ref="7" text="sdle9"></button></div></div></div></body>
Click on a "checkbox" widget.
click
10
null
stop
Click on a "textarea" widget. <body ref="10"><div id="wrap" ref="8"><div id="area" ref="5"><div classes="widget" ref="4"><textarea ref="6" value="dcz" text="dcz"></textarea></div><div classes="widget" ref="3"><button ref="2" text="32tlh"></button></div><div classes="widget" ref="1"><button ref="12" text="dp"></button></div><div classes="widget" ref="9"><label ref="14"><input_radio ref="13" value="false"></input_radio><t ref="-6" text="v"></t></label></div><div classes="widget" ref="11"><input_text ref="7" value="s0bv"></input_text></div></div></div></body>
Click on a "textarea" widget.
click
6
null
stop
Click on a "checkbox" widget. <body ref="16"><div id="wrap" ref="8"><div id="area" ref="13"><div classes="widget" ref="24"><label ref="7"><input_radio ref="20" value="false"></input_radio><t ref="-29" text="gy96"></t></label></div><div classes="widget" ref="26"><label ref="2"><input type="checkbox" ref="29" value="false"></input><t ref="-30" text="lkk"></t></label></div><div classes="widget" ref="27"><label ref="6"><input type="checkbox" ref="3" value="true"></input><t ref="-31" text="qohz"></t></label></div><div classes="widget" ref="15"><label ref="9"><input type="checkbox" ref="5" value="false"></input><t ref="-32" text="qc"></t></label></div><div classes="widget" ref="12"><button ref="11" text="nd"></button></div></div></div></body>
Click on a "checkbox" widget.
click
3
null
stop
Click on a "text" widget. <body ref="3"><div id="wrap" ref="10"><div id="area" ref="7"><div classes="widget" ref="16"><input_text ref="2" value="byi"></input_text></div><div classes="widget" ref="12"><textarea ref="6" value="dki" text="dki"></textarea></div><div classes="widget" ref="1"><label ref="14"><input type="checkbox" ref="8" value="false"></input><t ref="-16" text="xlzmi"></t></label></div><div classes="widget" ref="4"><label ref="15"><input_radio ref="11" value="false"></input_radio><t ref="-17" text="cec1c"></t></label></div><div classes="widget" ref="13"><label ref="9"><input_radio ref="5" value="false"></input_radio><t ref="-18" text="w"></t></label></div></div></div></body>
Click on a "text" widget.
click
2
null
stop
Click on a "text" widget. <body ref="12"><div id="wrap" ref="8"><div id="area" ref="13"><div classes="widget" ref="9"><input_text ref="11" value="twv1"></input_text></div><div classes="widget" ref="10"><input_text ref="4" value="trnwy"></input_text></div><div classes="widget" ref="7"><textarea ref="3" value="uit" text="uit"></textarea></div><div classes="widget" ref="1"><input_text ref="2" value="nmdb"></input_text></div><div classes="widget" ref="5"><textarea ref="6" value="jsx" text="jsx"></textarea></div></div></div></body>
Click on a "text" widget.
click
4
null
stop
Click on a "textarea" widget. <body ref="7"><div id="wrap" ref="5"><div id="area" ref="10"><div classes="widget" ref="16"><label ref="8"><input_radio ref="13" value="false"></input_radio><t ref="-16" text="vqxfr"></t></label></div><div classes="widget" ref="11"><label ref="6"><input type="checkbox" ref="2" value="false"></input><t ref="-17" text="znk0"></t></label></div><div classes="widget" ref="3"><label ref="14"><input type="checkbox" ref="1" value="false"></input><t ref="-18" text="3v"></t></label></div><div classes="widget" ref="15"><textarea ref="4" value="d" text="d"></textarea></div><div classes="widget" ref="12"><textarea ref="9" value="4j" text="4j"></textarea></div></div></div></body>
Click on a "textarea" widget.
click
4
null
stop
Click on a "radio" widget. <body ref="4"><div id="wrap" ref="11"><div id="area" ref="20"><div classes="widget" ref="25"><label ref="29"><input_radio ref="26" value="false"></input_radio><t ref="-29" text="4a19y"></t></label></div><div classes="widget" ref="10"><label ref="24"><input_radio ref="17" value="false"></input_radio><t ref="-30" text="g"></t></label></div><div classes="widget" ref="3"><label ref="1"><input_radio ref="13" value="true"></input_radio><t ref="-31" text="vbcbg"></t></label></div><div classes="widget" ref="6"><button ref="18" text="qrkb3"></button></div><div classes="widget" ref="22"><label ref="31"><input_radio ref="2" value="false"></input_radio><t ref="-32" text="dud0r"></t></label></div></div></div></body>
Click on a "radio" widget.
click
13
null
stop
Click on a "radio" widget. <body ref="1"><div id="wrap" ref="9"><div id="area" ref="13"><div classes="widget" ref="12"><input_text ref="15" value="p"></input_text></div><div classes="widget" ref="8"><button ref="7" text="ksb0"></button></div><div classes="widget" ref="10"><label ref="5"><input_radio ref="2" value="true"></input_radio><t ref="-11" text="eku"></t></label></div><div classes="widget" ref="14"><label ref="11"><input_radio ref="4" value="false"></input_radio><t ref="-12" text="h3jtn"></t></label></div><div classes="widget" ref="6"><input_text ref="3" value="e"></input_text></div></div></div></body>
Click on a "radio" widget.
click
2
null
stop
Click on a "button" widget. <body ref="10"><div id="wrap" ref="6"><div id="area" ref="11"><div classes="widget" ref="12"><button ref="2" text="6iyh"></button></div><div classes="widget" ref="8"><label ref="4"><input_radio ref="1" value="false"></input_radio><t ref="-11" text="wavt"></t></label></div><div classes="widget" ref="14"><button ref="3" text="bqu7"></button></div><div classes="widget" ref="9"><textarea ref="15" value="7llmx" text="7llmx"></textarea></div><div classes="widget" ref="5"><label ref="7"><input_radio ref="13" value="false"></input_radio><t ref="-12" text="kj"></t></label></div></div></div></body>
Click on a "button" widget.
click
2
null
stop
Click on a "text" widget. <body ref="8"><div id="wrap" ref="9"><div id="area" ref="7"><div classes="widget" ref="12"><input_text ref="11" value="ss2y2"></input_text></div><div classes="widget" ref="4"><textarea ref="1" value="afs5" text="afs5"></textarea></div><div classes="widget" ref="10"><label ref="2"><input_radio ref="3" value="false"></input_radio><t ref="-6" text="1"></t></label></div><div classes="widget" ref="5"><input_text ref="6" value="ouq"></input_text></div><div classes="widget" ref="13"><input_text ref="8" value="mzusg"></input_text></div></div></div></body>
Click on a "text" widget.
click
11
null
stop
Click on a "text" widget. <body ref="1"><div id="wrap" ref="13"><div id="area" ref="10"><div classes="widget" ref="2"><label ref="14"><input_radio ref="4" value="false"></input_radio><t ref="-16" text="9wm"></t></label></div><div classes="widget" ref="9"><input_text ref="11" value="fgsc"></input_text></div><div classes="widget" ref="12"><input_text ref="5" value="k"></input_text></div><div classes="widget" ref="7"><label ref="3"><input type="checkbox" ref="8" value="false"></input><t ref="-17" text="wi"></t></label></div><div classes="widget" ref="6"><label ref="1"><input_radio ref="13" value="false"></input_radio><t ref="-18" text="72u"></t></label></div></div></div></body>
Click on a "text" widget.
click
5
null
stop
Click on a "textarea" widget. <body ref="15"><div id="wrap" ref="7"><div id="area" ref="11"><div classes="widget" ref="4"><label ref="8"><input_radio ref="3" value="false"></input_radio><t ref="-11" text="0ot6h"></t></label></div><div classes="widget" ref="12"><label ref="13"><input type="checkbox" ref="6" value="false"></input><t ref="-12" text="ooi"></t></label></div><div classes="widget" ref="5"><textarea ref="10" value="vo" text="vo"></textarea></div><div classes="widget" ref="1"><textarea ref="9" value="5a8uc" text="5a8uc"></textarea></div><div classes="widget" ref="2"><textarea ref="14" value="zbt" text="zbt"></textarea></div></div></div></body>
Click on a "textarea" widget.
click
10
null
stop
Click on a "checkbox" widget. <body ref="11"><div id="wrap" ref="13"><div id="area" ref="10"><div classes="widget" ref="6"><textarea ref="12" value="otdn" text="otdn"></textarea></div><div classes="widget" ref="14"><label ref="1"><input type="checkbox" ref="3" value="true"></input><t ref="-6" text="msjr"></t></label></div><div classes="widget" ref="9"><button ref="2" text="j"></button></div><div classes="widget" ref="7"><textarea ref="8" value="xhqq" text="xhqq"></textarea></div><div classes="widget" ref="5"><input_text ref="4" value="x8la"></input_text></div></div></div></body>
Click on a "checkbox" widget.
click
3
null
stop
Click on a "radio" widget. <body ref="24"><div id="wrap" ref="28"><div id="area" ref="19"><div classes="widget" ref="20"><label ref="4"><input_radio ref="22" value="false"></input_radio><t ref="-16" text="jozb"></t></label></div><div classes="widget" ref="3"><label ref="8"><input_radio ref="27" value="false"></input_radio><t ref="-17" text="7"></t></label></div><div classes="widget" ref="5"><label ref="10"><input_radio ref="23" value="false"></input_radio><t ref="-18" text="se"></t></label></div><div classes="widget" ref="14"><button ref="29" text="elrh"></button></div><div classes="widget" ref="24"><input_text ref="28" value="tco94"></input_text></div></div></div></body>,
Click on a "radio" widget.
click
24
null
continue
{click,24,} Click on a "radio" widget. <body ref="19"><div id="wrap" ref="18"><div id="area" ref="13"><div classes="widget" ref="6"><label ref="17"><input_radio ref="12" value="true"></input_radio><t ref="-22" text="jozb"></t></label></div><div classes="widget" ref="9"><label ref="7"><input_radio ref="25" value="false"></input_radio><t ref="-23" text="7"></t></label></div><div classes="widget" ref="2"><label ref="1"><input_radio ref="16" value="false"></input_radio><t ref="-24" text="se"></t></label></div><div classes="widget" ref="11"><button ref="21" text="elrh"></button></div><div classes="widget" ref="26"><input_text ref="15" value="tco94"></input_text></div></div></div></body>
Click on a "radio" widget.
click
12
null
stop
{click,5,} Enter 10:38 PM as the time <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 10:38 PM as the time
keydown
5
22:38
stop
click submit <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="5" value="22:38"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>
click submit
click
2
null
stop
{click,4,} Enter 2:25 PM as the time <body ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 2:25 PM as the time
keydown
4
14:25
stop
click submit <body ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="4" value="14:25"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>
click submit
click
5
null
stop
{click,6,} Enter 6:32 PM as the time <body ref="5"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="2"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 6:32 PM as the time
keydown
6
18:32
stop
{click,3,} Enter 2:45 PM as the time <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="6"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 2:45 PM as the time
keydown
3
14:45
stop
{click,1,} Enter 10:39 AM as the time <body ref="6"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="4"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 10:39 AM as the time
keydown
1
10:39
stop
{click,2,} Enter 11:30 AM as the time <body ref="6"><div id="wrap" ref="5"><div id="area" ref="3"><div id="form" ref="4"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 11:30 AM as the time
keydown
2
11:30
stop
{click,3,} Enter 4:52 AM as the time <body ref="2"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="1"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 4:52 AM as the time
keydown
3
04:52
stop
{click,4,} Enter 6:47 AM as the time <body ref="5"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 6:47 AM as the time
keydown
4
06:47
stop
{click,6,} Enter 2:29 AM as the time <body ref="1"><div id="wrap" ref="2"><div id="area" ref="3"><div id="form" ref="5"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 2:29 AM as the time
keydown
6
02:29
stop
{click,2,} Enter 12:09 PM as the time <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 12:09 PM as the time
keydown
2
12:09
stop
click submit <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="2" value="12:09"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>
click submit
click
3
null
stop
{click,5,} Enter 2:19 AM as the time <body ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="2"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 2:19 AM as the time
keydown
5
02:19
stop
{click,2,} Enter 10:39 AM as the time <body ref="6"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 10:39 AM as the time
keydown
2
10:39
stop
click submit <body ref="6"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="2" value="10:39"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,1,} Enter 7:14 AM as the time <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 7:14 AM as the time
keydown
1
07:14
stop
click submit <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="3"><input_time id="tt" ref="1" value="07:14"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,2,} Enter 9:57 AM as the time <body ref="1"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 9:57 AM as the time
keydown
2
09:57
stop
{click,4,} Enter 4:01 AM as the time <body ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 4:01 AM as the time
keydown
4
04:01
stop
{click,2,} Enter 4:21 AM as the time <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="1"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 4:21 AM as the time
keydown
2
04:21
stop
{click,3,} Enter 5:41 AM as the time <body ref="4"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="5"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 5:41 AM as the time
keydown
3
05:41
stop
{click,2,} Enter 3:21 AM as the time <body ref="3"><div id="wrap" ref="5"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 3:21 AM as the time
keydown
2
03:21
stop
{click,2,} Enter 12:11 AM as the time <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 12:11 AM as the time
keydown
2
00:11
stop
{click,1,} Enter 2:26 AM as the time <body ref="6"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 2:26 AM as the time
keydown
1
02:26
stop
{click,6,} Enter 7:11 AM as the time <body ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 7:11 AM as the time
keydown
6
07:11
stop
click submit <body ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="6" value="07:11"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>
click submit
click
5
null
stop
{click,2,} Enter 2:04 PM as the time <body ref="6"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 2:04 PM as the time
keydown
2
14:04
stop
{click,4,} Enter 12:45 PM as the time <body ref="3"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="5"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 12:45 PM as the time
keydown
4
12:45
stop
Switch between the tabs to find the link "non". <body ref="12"><div id="wrap" ref="25"><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="22"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="15"><a id="ui-id-10" classes="ui-tabs-anchor" ref="18" 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="11"><a id="ui-id-11" classes="ui-tabs-anchor" ref="23" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="21"><a id="ui-id-12" 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="20"><p ref="13"><t ref="-31" text="in sed tellus."></t><span classes="alink" ref="2" text="mauris"></span><span classes="alink" ref="17" text="non"></span><t ref="-32" text="pellentesque eget. quis."></t><t ref="-33" text="sit lacus, ac dolor. eu"></t><span classes="alink" ref="19" text="consequat."></span><t ref="-34" text="blandit aenean"></t><t ref="-35" text="ultricies dapibus"></t><span classes="alink" ref="14" text="ullamcorper."></span><t ref="-36" text="egestas."></t></p></div></div></div></body>,
Switch between the tabs to find the link "non".
click
23
null
continue
{click,23,} Switch between the tabs to find the link "non". <body ref="12"><div id="wrap" ref="25"><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="22"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="15"><a id="ui-id-10" classes="ui-tabs-anchor" ref="18" 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-11" classes="ui-tabs-anchor" ref="23" 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="21"><a id="ui-id-12" 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="1"><p ref="9"><t ref="-77" text="dignissim tempus, sit"></t><t ref="-78" text="iaculis"></t><span classes="alink" ref="5" text="lobortis"></span><t ref="-79" text="interdum"></t><t ref="-80" text="purus montes, pulvinar et."></t><t ref="-81" text="turpis. sagittis"></t><span classes="alink" ref="7" text="lacus"></span><t ref="-82" text="dictum velit faucibus"></t><t ref="-83" text="aliquam ultrices."></t><span classes="alink" ref="6" text="euismod"></span><t ref="-84" text="tortor."></t></p></div></div></div></body>,
Switch between the tabs to find the link "non".
click
10
null
continue
{click,23,}{click,10,} Switch between the tabs to find the link "non". <body ref="12"><div id="wrap" ref="25"><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="22"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="15"><a id="ui-id-10" classes="ui-tabs-anchor" ref="18" 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="11"><a id="ui-id-11" classes="ui-tabs-anchor" ref="23" 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="21"><a id="ui-id-12" 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="24"><p ref="4"><t ref="-120" text="potenti at"></t><span classes="alink" ref="16" text="aliquam"></span><t ref="-121" text="tellus."></t><t ref="-122" text="mauris lectus quam elit"></t><t ref="-123" text="varius. nunc, sit praesent"></t><span classes="alink" ref="26" text="tortor"></span><span classes="alink" ref="8" text="tempus"></span><t ref="-124" text="in viverra"></t><t ref="-125" text="facilisi pellentesque ornare"></t><t ref="-126" text="et."></t></p></div></div></div></body>,
Switch between the tabs to find the link "non".
click
23
null
stop
Click on the link "non". <body ref="12"><div id="wrap" ref="25"><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="22"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="15"><a id="ui-id-10" classes="ui-tabs-anchor" ref="18" 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-11" classes="ui-tabs-anchor" ref="23" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="21"><a id="ui-id-12" 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="1"><p ref="9"><t ref="-167" text="dignissim tempus, sit"></t><t ref="-168" text="iaculis"></t><span classes="alink" ref="5" text="lobortis"></span><t ref="-169" text="interdum"></t><t ref="-170" text="purus montes, pulvinar et."></t><t ref="-171" text="turpis. sagittis"></t><span classes="alink" ref="7" text="lacus"></span><t ref="-172" text="dictum velit faucibus"></t><t ref="-173" text="aliquam ultrices."></t><span classes="alink" ref="6" text="euismod"></span><t ref="-174" text="tortor."></t></p></div></div></div></body>,
Click on the link "non".
click
18
null
stop
Switch between the tabs to find the link "nibh". <body ref="19"><div id="wrap" ref="5"><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="4"><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 ui-state-hover ui-state-focus" ref="2"><a id="ui-id-8" classes="ui-tabs-anchor" ref="20" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="14"><a id="ui-id-9" classes="ui-tabs-anchor" ref="17" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="12"><p ref="18"><t ref="-31" text="id at venenatis"></t><span classes="alink" ref="1" text="proin"></span><t ref="-32" text="eget"></t><t ref="-33" text="dignissim tempus. mauris,"></t><t ref="-34" text="augue at vitae lorem"></t><t ref="-35" text="congue. enim sed orci vel"></t><t ref="-36" text="integer"></t><span classes="alink" ref="16" text="nibh"></span><span classes="alink" ref="21" text="habitant."></span></p></div></div></div></body>,
Switch between the tabs to find the link "nibh".
click
20
null
stop
Click on the link "nibh". <body ref="19"><div id="wrap" ref="5"><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="4"><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-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-tabs-active ui-state-active" ref="2"><a id="ui-id-8" classes="ui-tabs-anchor" ref="20" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="14"><a id="ui-id-9" classes="ui-tabs-anchor" ref="17" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="8"><p ref="10"><t ref="-72" text="viverra praesent quis"></t><span classes="alink" ref="7" text="tincidunt"></span><t ref="-73" text="accumsan"></t><span classes="alink" ref="15" text="ac."></span><t ref="-74" text="netus"></t><span classes="alink" ref="3" text="elementum."></span><span classes="alink" ref="13" text="in"></span><t ref="-75" text="leo"></t><t ref="-76" text="cum quam cras"></t><span classes="alink" ref="22" text="viverra"></span><t ref="-77" text="odio massa feugiat facilisis."></t><t ref="-78" text="scelerisque. ac."></t></p></div></div></div></body>,
Click on the link "nibh".
click
6
null
stop
Switch between the tabs to find the link "egestas". <body ref="11"><div id="wrap" ref="28"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="20"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="15"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="23"><a id="ui-id-7" classes="ui-tabs-anchor" ref="32" 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="16"><a id="ui-id-8" classes="ui-tabs-anchor" ref="29" 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="26" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="30"><p ref="3"><t ref="-36" text="facilisis."></t><span classes="alink" ref="7" text="tristique"></span><t ref="-37" text="ipsum."></t><t ref="-38" text="leo"></t><span classes="alink" ref="13" text="bibendum"></span><span classes="alink" ref="6" text="tristique"></span><t ref="-39" text="nulla fermentum"></t><span classes="alink" ref="19" text="tellus"></span><t ref="-40" text="nunc, rhoncus,. nisl sed eu"></t><t ref="-41" text="nisi,. tellus dignissim nisl"></t><t ref="-42" text="neque"></t><span classes="alink" ref="31" text="tellus."></span></p></div></div></div></body>,
Switch between the tabs to find the link "egestas".
click
29
null
stop
Click on the link "egestas". <body ref="11"><div id="wrap" ref="28"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="20"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="15"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="23"><a id="ui-id-7" classes="ui-tabs-anchor" ref="32" 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="16"><a id="ui-id-8" classes="ui-tabs-anchor" ref="29" 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="26" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="2"><p ref="10"><t ref="-78" text="urna,. sed. massa. nec"></t><span classes="alink" ref="24" text="nisi"></span><t ref="-79" text="non."></t><span classes="alink" ref="4" text="mattis."></span><t ref="-80" text="tellus"></t><t ref="-81" text="vulputate purus pretium"></t><t ref="-82" text="turpis molestie varius et at"></t><t ref="-83" text="morbi"></t><span classes="alink" ref="1" text="etiam"></span><t ref="-84" text="id facilisis."></t></p></div></div></div></body>,
Click on the link "egestas".
click
26
null
stop
Switch between the tabs to find the link "risus". <body ref="12"><div id="wrap" ref="29"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="27"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="25"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="28"><a id="ui-id-13" 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="2"><a id="ui-id-14" classes="ui-tabs-anchor" ref="26" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="14"><a id="ui-id-15" 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="16"><p ref="9"><t ref="-36" text="nulla. praesent"></t><span classes="alink" ref="15" text="dui"></span><t ref="-37" text="iaculis"></t><span classes="alink" ref="7" text="risus"></span><t ref="-38" text="in"></t><span classes="alink" ref="17" text="vitae"></span><t ref="-39" text="morbi"></t><span classes="alink" ref="22" text="viverra."></span><t ref="-40" text="egestas. tincidunt"></t><span classes="alink" ref="21" text="vitae."></span><t ref="-41" text="volutpat. mus a tristique ut"></t><t ref="-42" text="dolor. condimentum. vitae."></t></p></div></div></div></body>,
Switch between the tabs to find the link "risus".
click
26
null
continue
{click,26,} Switch between the tabs to find the link "risus". <body ref="12"><div id="wrap" ref="29"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="27"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="25"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="28"><a id="ui-id-13" 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="2"><a id="ui-id-14" classes="ui-tabs-anchor" ref="26" 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="14"><a id="ui-id-15" 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="10"><p ref="19"><t ref="-78" text="facilisis id nunc."></t><span classes="alink" ref="3" text="cursus"></span><span classes="alink" ref="20" text="amet"></span><t ref="-79" text="et id"></t><span classes="alink" ref="6" text="a"></span><span classes="alink" ref="23" text="diam"></span><t ref="-80" text="eu. id"></t><t ref="-81" text="arcu,"></t><span classes="alink" ref="24" text="interdum"></span><t ref="-82" text="orci,. at"></t><t ref="-83" text="viverra. senectus nullam."></t><t ref="-84" text="aliquet. justo."></t></p></div></div></div></body>,
Switch between the tabs to find the link "risus".
click
8
null
continue
{click,26,}{click,8,} Switch between the tabs to find the link "risus". <body ref="12"><div id="wrap" ref="29"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="27"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="25"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="28"><a id="ui-id-13" 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="2"><a id="ui-id-14" classes="ui-tabs-anchor" ref="26" 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="14"><a id="ui-id-15" 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="13"><p ref="5"><t ref="-115" text="quam massa et. tristique"></t><t ref="-116" text="pulvinar"></t><span classes="alink" ref="11" text="facilisis"></span><span classes="alink" ref="12" text="sed"></span><t ref="-117" text="aliquam odio pharetra, sed."></t><t ref="-118" text="turpis. eu proin"></t><span classes="alink" ref="29" text="nulla"></span><span classes="alink" ref="27" text="tempus"></span><t ref="-119" text="ultricies"></t><span classes="alink" ref="1" text="enim"></span><span classes="alink" ref="18" text="id"></span><t ref="-120" text="sagittis."></t></p></div></div></div></body>,
Switch between the tabs to find the link "risus".
click
26
null
stop
Click on the link "risus". <body ref="12"><div id="wrap" ref="29"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="27"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="25"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="28"><a id="ui-id-13" 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="2"><a id="ui-id-14" classes="ui-tabs-anchor" ref="26" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="14"><a id="ui-id-15" 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="10"><p ref="19"><t ref="-156" text="facilisis id nunc."></t><span classes="alink" ref="3" text="cursus"></span><span classes="alink" ref="20" text="amet"></span><t ref="-157" text="et id"></t><span classes="alink" ref="6" text="a"></span><span classes="alink" ref="23" text="diam"></span><t ref="-158" text="eu. id"></t><t ref="-159" text="arcu,"></t><span classes="alink" ref="24" text="interdum"></span><t ref="-160" text="orci,. at"></t><t ref="-161" text="viverra. senectus nullam."></t><t ref="-162" text="aliquet. justo."></t></p></div></div></div></body>,
Click on the link "risus".
click
4
null
stop
Switch between the tabs to find the link "purus". <body ref="2"><div id="wrap" ref="21"><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="19"><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="17" 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="23"><a id="ui-id-11" classes="ui-tabs-anchor" ref="24" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="25"><a id="ui-id-12" classes="ui-tabs-anchor" ref="13" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="22"><p ref="6"><t ref="-51" text="facilisis quam pretium."></t><t ref="-52" text="lectus"></t><span classes="alink" ref="3" text="laoreet"></span><t ref="-53" text="auctor diam"></t><t ref="-54" text="eu suspendisse ac"></t><span classes="alink" ref="9" text="ornare"></span><t ref="-55" text="venenatis pellentesque."></t><t ref="-56" text="massa"></t><span classes="alink" ref="1" text="facilisi"></span><t ref="-57" text="iaculis"></t><t ref="-58" text="pharetra"></t><span classes="alink" ref="2" text="eu"></span><t ref="-59" text="rhoncus"></t><t ref="-60" text="pharetra."></t></p></div></div></div></body>,
Switch between the tabs to find the link "purus".
click
24
null
stop
Click on the link "purus". <body ref="2"><div id="wrap" ref="21"><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="19"><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="17" 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="23"><a id="ui-id-11" classes="ui-tabs-anchor" ref="24" 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="25"><a id="ui-id-12" classes="ui-tabs-anchor" ref="13" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="21"><p ref="11"><t ref="-101" text="morbi."></t><span classes="alink" ref="10" text="in"></span><span classes="alink" ref="15" text="amet"></span><t ref="-102" text="porttitor"></t><t ref="-103" text="porta aliquet sapien, id"></t><t ref="-104" text="eget"></t><span classes="alink" ref="12" text="aliquet"></span><t ref="-105" text="suspendisse id"></t><t ref="-106" text="malesuada nibh. tellus"></t><t ref="-107" text="adipiscing. ac aliquam"></t><t ref="-108" text="blandit. mattis."></t></p></div></div></div></body>,
Click on the link "purus".
click
13
null
stop
Switch between the tabs to find the link "enim,". <body ref="5"><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="6"><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-7" classes="ui-tabs-anchor" ref="17" 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-8" classes="ui-tabs-anchor" ref="25" text="tab #2"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="11"><a id="ui-id-9" classes="ui-tabs-anchor" ref="16" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="13"><p ref="18"><span classes="alink" ref="14" text="turpis"></span><t ref="-36" text="lectus felis orci sit"></t><t ref="-37" text="porta"></t><span classes="alink" ref="9" text="pharetra."></span><t ref="-38" text="pellentesque tincidunt cras"></t><t ref="-39" text="aliquam id aliquet quam"></t><t ref="-40" text="purus non. bibendum"></t><t ref="-41" text="egestas"></t><span classes="alink" ref="23" text="odio."></span><t ref="-42" text="fames."></t></p></div></div></div></body>,
Switch between the tabs to find the link "enim,".
click
25
null
stop
Click on the link "enim,". <body ref="5"><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="6"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="10"><a id="ui-id-7" classes="ui-tabs-anchor" ref="17" 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-8" classes="ui-tabs-anchor" ref="25" 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="11"><a id="ui-id-9" classes="ui-tabs-anchor" ref="16" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="15"><p ref="20"><t ref="-78" text="in tellus"></t><span classes="alink" ref="19" text="integer"></span><t ref="-79" text="proin"></t><t ref="-80" text="venenatis, tortor purus"></t><t ref="-81" text="libero"></t><span classes="alink" ref="8" text="sed"></span><span classes="alink" ref="12" text="quis"></span><t ref="-82" text="sit gravida"></t><span classes="alink" ref="21" text="tempus"></span><t ref="-83" text="iaculis nec. dui"></t><span classes="alink" ref="4" text="felis"></span><t ref="-84" text="duis sagittis dignissim."></t></p></div></div></div></body>,
Click on the link "enim,".
click
16
null
stop
Switch between the tabs to find the link "tincidunt". <body ref="8"><div id="wrap" ref="25"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="20"><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="23"><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-state-hover ui-state-focus" ref="12"><a id="ui-id-5" 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="14"><a id="ui-id-6" classes="ui-tabs-anchor" ref="15" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="24"><p ref="26"><span classes="alink" ref="18" text="mauris"></span><t ref="-36" text="in odio eu, mi"></t><t ref="-37" text="fringilla. mattis sit et"></t><t ref="-38" text="fermentum"></t><span classes="alink" ref="4" text="blandit."></span><t ref="-39" text="viverra lectus tincidunt"></t><t ref="-40" text="egestas"></t><span classes="alink" ref="9" text="non,"></span><t ref="-41" text="lorem"></t><span classes="alink" ref="11" text="hac"></span><t ref="-42" text="suspendisse amet."></t></p></div></div></div></body>,
Switch between the tabs to find the link "tincidunt".
click
3
null
stop
Click on the link "tincidunt". <body ref="8"><div id="wrap" ref="25"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="20"><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="23"><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="12"><a id="ui-id-5" 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="14"><a id="ui-id-6" classes="ui-tabs-anchor" ref="15" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="7"><p ref="16"><t ref="-83" text="donec cursus feugiat"></t><t ref="-84" text="feugiat. leo quis"></t><span classes="alink" ref="17" text="turpis"></span><t ref="-85" text="viverra"></t><span classes="alink" ref="21" text="orci"></span><t ref="-86" text="ultrices tellus"></t><t ref="-87" text="eget pellentesque."></t><t ref="-88" text="imperdiet eu. in"></t><span classes="alink" ref="13" text="tincidunt"></span><t ref="-89" text="amet pellentesque"></t><t ref="-90" text="pharetra."></t></p></div></div></div></body>,
Click on the link "tincidunt".
click
15
null
stop
Switch between the tabs to find the link "commodo,". <body ref="14"><div id="wrap" ref="7"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="18"><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="10"><a id="ui-id-16" 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="12"><a id="ui-id-17" 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="20"><a id="ui-id-18" 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="15"><p ref="16"><t ref="-31" text="pellentesque pulvinar sit id"></t><t ref="-32" text="vitae porttitor tempus"></t><span classes="alink" ref="6" text="tellus"></span><span classes="alink" ref="8" text="sed"></span><t ref="-33" text="id bibendum ac, morbi"></t><t ref="-34" text="tempor. aliquam. amet"></t><span classes="alink" ref="17" text="purus"></span><t ref="-35" text="consectetur"></t><span classes="alink" ref="5" text="nibh"></span><t ref="-36" text="ligula."></t></p></div></div></div></body>,
Switch between the tabs to find the link "commodo,".
click
1
null
stop
Click on the link "commodo,". <body ref="14"><div id="wrap" ref="7"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="18"><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="10"><a id="ui-id-16" 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="12"><a id="ui-id-17" 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="20"><a id="ui-id-18" 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="9"><p ref="13"><t ref="-77" text="duis"></t><span classes="alink" ref="19" text="massa"></span><t ref="-78" text="donec."></t><t ref="-79" text="congue tellus metus. velit."></t><t ref="-80" text="pharetra lectus tortor"></t><t ref="-81" text="sollicitudin purus. posuere."></t><t ref="-82" text="molestie sollicitudin"></t><span classes="alink" ref="3" text="ut."></span><t ref="-83" text="congue. lacus. nec"></t><t ref="-84" text="elementum."></t></p></div></div></div></body>,
Click on the link "commodo,".
click
2
null
stop
Switch between the tabs to find the link "mauris". <body ref="21"><div id="wrap" ref="17"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="18"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="26"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-tabs-active ui-state-active" ref="25"><a id="ui-id-7" classes="ui-tabs-anchor" ref="23" 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-8" classes="ui-tabs-anchor" ref="27" 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="11" text="tab #3"></a></li></ul><div id="tabs-1" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="22"><p ref="15"><t ref="-41" text="congue non"></t><span classes="alink" ref="1" text="velit."></span><t ref="-42" text="tellus."></t><t ref="-43" text="elit risus,"></t><span classes="alink" ref="2" text="sit"></span><t ref="-44" text="quisque turpis."></t><t ref="-45" text="interdum eget odio"></t><t ref="-46" text="convallis urna ac pretium"></t><span classes="alink" ref="12" text="mauris"></span><t ref="-47" text="molestie commodo"></t><t ref="-48" text="donec."></t></p></div></div></div></body>,
Switch between the tabs to find the link "mauris".
click
27
null
continue
{click,27,} Switch between the tabs to find the link "mauris". <body ref="21"><div id="wrap" ref="17"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="18"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="26"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="25"><a id="ui-id-7" classes="ui-tabs-anchor" ref="23" 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="27" 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="3"><a id="ui-id-9" classes="ui-tabs-anchor" ref="11" text="tab #3"></a></li></ul><div id="tabs-2" classes="ui-tabs-panel ui-corner-bottom ui-widget-content" ref="16"><p ref="9"><t ref="-84" text="sed leo fringilla"></t><span classes="alink" ref="14" text="risus."></span><t ref="-85" text="egestas neque ultrices."></t><t ref="-86" text="pellentesque"></t><span classes="alink" ref="13" text="consequat"></span><t ref="-87" text="egestas diam sed. ac."></t><t ref="-88" text="aliquam tortor,"></t><span classes="alink" ref="5" text="volutpat,"></span><t ref="-89" text="imperdiet augue amet,"></t><t ref="-90" text="odio."></t></p></div></div></div></body>,
Switch between the tabs to find the link "mauris".
click
11
null
stop
Click on the link "mauris". <body ref="21"><div id="wrap" ref="17"><div id="area" classes="ui-tabs ui-corner-all ui-widget ui-widget-content" ref="18"><ul classes="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header" ref="26"><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab ui-state-hover ui-state-focus" ref="25"><a id="ui-id-7" classes="ui-tabs-anchor" ref="23" text="tab #1"></a></li><li classes="ui-tabs-tab ui-corner-top ui-state-default ui-tab" ref="6"><a id="ui-id-8" classes="ui-tabs-anchor" ref="27" 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-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="4"><p ref="8"><span classes="alink" ref="19" text="euismod."></span><t ref="-121" text="ullamcorper."></t><t ref="-122" text="pellentesque diam ac ut"></t><span classes="alink" ref="7" text="nisl,"></span><t ref="-123" text="gravida tellus."></t><t ref="-124" text="consectetur. odio"></t><span classes="alink" ref="24" text="porttitor"></span><t ref="-125" text="eget duis rhoncus sit nunc"></t><span classes="alink" ref="10" text="nullam"></span><t ref="-126" text="ipsum"></t><span classes="alink" ref="20" text="accumsan."></span></p></div></div></div></body>,
Click on the link "mauris".
click
23
null
stop