{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); , "},"instruction":{"kind":"string","value":"Enter the username \"chas\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"chas"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":901,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter the password \"TAql\"

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

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

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"annis\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"annis"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":907,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"3L\"

, "},"instruction":{"kind":"string","value":"Enter the password \"3L\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"3l"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":908,"cells":{"history_episodes":{"kind":"string","value":" press login

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":909,"cells":{"history_episodes":{"kind":"string","value":"{click,16,}{click,14,} Enter the username \"kanesha\"

, "},"instruction":{"kind":"string","value":"Enter the username \"kanesha\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"string","value":"kanesha"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":910,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"2j\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"macie\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"macie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":913,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"0el\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"jerald\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"jerald"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":916,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"4cgg\"

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"keneth\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"string","value":"keneth"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":919,"cells":{"history_episodes":{"kind":"string","value":"{click,12,}{click,15,} Enter the password \"24OS\"

, "},"instruction":{"kind":"string","value":"Enter the password \"24OS\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"24os"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":920,"cells":{"history_episodes":{"kind":"string","value":" press login

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

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

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

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

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

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

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

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

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

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

, "},"instruction":{"kind":"string","value":"Enter the username \"beaulah\""},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"beaulah"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":931,"cells":{"history_episodes":{"kind":"string","value":"{click,4,}{click,9,} Enter the password \"wu\"

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

"},"instruction":{"kind":"string","value":"press login"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":933,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":934,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":935,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":936,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":21,"string":"21"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":937,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":938,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":19,"string":"19"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":939,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":940,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":941,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":942,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":943,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":944,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":945,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":946,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":947,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":948,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":949,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":950,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":951,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":952,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":953,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":954,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":20,"string":"20"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":955,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":956,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":957,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":958,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":959,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":960,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"Cancel\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"Cancel\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":961,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":962,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":19,"string":"19"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":963,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"OK\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"OK\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":964,"cells":{"history_episodes":{"kind":"string","value":" Click the button in the dialog box labeled \"x\".

"},"instruction":{"kind":"string","value":"Click the button in the dialog box labeled \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":965,"cells":{"history_episodes":{"kind":"string","value":" Select 10/23/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 10/23/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":966,"cells":{"history_episodes":{"kind":"string","value":"{click,16,} Select 10/23/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 10/23/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":49,"string":"49"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":967,"cells":{"history_episodes":{"kind":"string","value":" Select 12/30/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 12/30/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":103,"string":"103"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":968,"cells":{"history_episodes":{"kind":"string","value":"{click,103,} Select 12/30/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 12/30/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":73,"string":"73"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":969,"cells":{"history_episodes":{"kind":"string","value":" click submit

"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":96,"string":"96"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":970,"cells":{"history_episodes":{"kind":"string","value":" Select 09/15/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/15/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":158,"string":"158"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":971,"cells":{"history_episodes":{"kind":"string","value":"{click,158,} Select 09/15/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/15/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":38,"string":"38"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":972,"cells":{"history_episodes":{"kind":"string","value":" Select 09/27/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/27/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":116,"string":"116"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":973,"cells":{"history_episodes":{"kind":"string","value":"{click,116,} Select 09/27/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/27/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":200,"string":"200"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":974,"cells":{"history_episodes":{"kind":"string","value":" Select 09/27/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/27/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":136,"string":"136"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":975,"cells":{"history_episodes":{"kind":"string","value":"{click,136,} Select 09/27/2016 as the date

, "},"instruction":{"kind":"string","value":"Select 09/27/2016 as the date"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":109,"string":"109"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":976,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

, "},"instruction":{"kind":"string","value":"Expand the sections below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":995,"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":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":996,"cells":{"history_episodes":{"kind":"string","value":" Expand the sections below

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

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

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

, "},"instruction":{"kind":"string","value":" click on the link \"feugiat\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":9,"numItemsPerPage":100,"numTotalItems":40186,"offset":900,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjQ2NDE1OCwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2NDY3NzU4LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.5mWLBD2KF1h51raSfrMzTWFo4QjMEVKmSfQpei-fgEbAtyCgK6_b8iF6iKkpilpgBudJM2zida86uqMAVn8OAg","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
{click,11,} Enter the username "chas" <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><div id="form" ref="1"><p ref="10"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="11"></input_text></p><p ref="6"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the username "chas"
keydown
11
chas
stop
{click,8,} Enter the password "TAql" <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><div id="form" ref="1"><p ref="10"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="11" value="chas"></input_text></p><p ref="6"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="8"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the password "TAql"
keydown
8
taql
stop
press login <body ref="4"><div id="wrap" ref="3"><div id="area" ref="2"><div id="form" ref="1"><p ref="10"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="11" value="chas"></input_text></p><p ref="6"><label classes="bold" ref="5" text="password"></label><input_password id="password" ref="8" value="taql"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>
press login
click
7
null
stop
{click,4,} Enter the username "deneen" <body ref="11"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="4"></input_text></p><p ref="9"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>,
Enter the username "deneen"
keydown
4
deneen
stop
Enter the password "ME5A" <body ref="11"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="4" value="deneen"></input_text></p><p ref="9"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>,
Enter the password "ME5A"
keydown
10
me5a
stop
press login <body ref="11"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="7"><p ref="1"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="4" value="deneen"></input_text></p><p ref="9"><label classes="bold" ref="3" text="password"></label><input_password id="password" ref="10" value="me5a"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="ok"></button></div></div></div></body>
press login
click
5
null
stop
{click,9,} Enter the username "annis" <body ref="6"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><p ref="2"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="9"></input_text></p><p ref="10"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the username "annis"
keydown
9
annis
stop
Enter the password "3L" <body ref="6"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><p ref="2"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="9" value="annis"></input_text></p><p ref="10"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="4"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>,
Enter the password "3L"
keydown
4
3l
stop
press login <body ref="6"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><p ref="2"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="9" value="annis"></input_text></p><p ref="10"><label classes="bold" ref="11" text="password"></label><input_password id="password" ref="4" value="3l"></input_password></p><button id="subbtn" classes="secondary-action" ref="7" text="ok"></button></div></div></div></body>
press login
click
7
null
stop
{click,16,}{click,14,} Enter the username "kanesha" <body ref="7"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="1"><p ref="13"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="14"></input_text></p><p ref="12"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="15"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "kanesha"
keydown
14
kanesha
stop
Enter the password "2j" <body ref="7"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="1"><p ref="13"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="14" value="kanesha"></input_text></p><p ref="12"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="15"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "2j"
keydown
15
2j
stop
press login <body ref="7"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="1"><p ref="13"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="14" value="kanesha"></input_text></p><p ref="12"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="15" value="2j"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,7,} Enter the username "macie" <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="10"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="7"></input_text></p><p ref="1"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the username "macie"
keydown
7
macie
stop
Enter the password "0el" <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="10"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="7" value="macie"></input_text></p><p ref="1"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>,
Enter the password "0el"
keydown
11
0el
stop
press login <body ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="10"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="7" value="macie"></input_text></p><p ref="1"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="11" value="0el"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="ok"></button></div></div></div></body>
press login
click
3
null
stop
{click,9,} Enter the username "jerald" <body ref="11"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="9"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the username "jerald"
keydown
9
jerald
stop
Enter the password "4cgg" <body ref="11"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="9" value="jerald"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>,
Enter the password "4cgg"
keydown
5
4cgg
stop
press login <body ref="11"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="6"><p ref="2"><label classes="bold" ref="10" text="username"></label><input_text id="username" ref="9" value="jerald"></input_text></p><p ref="7"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5" value="4cgg"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="ok"></button></div></div></div></body>
press login
click
8
null
stop
{click,17,} Enter the username "keneth" <body ref="3"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="13"><p ref="2"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="17"></input_text></p><p ref="10"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="15"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="ok"></button></div></div></div></body>,
Enter the username "keneth"
keydown
17
keneth
stop
{click,12,}{click,15,} Enter the password "24OS" <body ref="3"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="13"><p ref="2"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="17" value="keneth"></input_text></p><p ref="10"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="15"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="ok"></button></div></div></div></body>,
Enter the password "24OS"
keydown
15
24os
stop
press login <body ref="3"><div id="wrap" ref="5"><div id="area" ref="9"><div id="form" ref="13"><p ref="2"><label classes="bold" ref="7" text="username"></label><input_text id="username" ref="17" value="keneth"></input_text></p><p ref="10"><label classes="bold" ref="8" text="password"></label><input_password id="password" ref="15" value="24os"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="ok"></button></div></div></div></body>
press login
click
1
null
stop
{click,1,} Enter the username "truman" <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="ok"></button></div></div></div></body>,
Enter the username "truman"
keydown
1
truman
stop
Enter the password "AzG" <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1" value="truman"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="ok"></button></div></div></div></body>,
Enter the password "AzG"
keydown
5
azg
stop
press login <body ref="6"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="2"><label classes="bold" ref="9" text="username"></label><input_text id="username" ref="1" value="truman"></input_text></p><p ref="11"><label classes="bold" ref="4" text="password"></label><input_password id="password" ref="5" value="azg"></input_password></p><button id="subbtn" classes="secondary-action" ref="10" text="ok"></button></div></div></div></body>
press login
click
10
null
stop
{click,10,} Enter the username "michel" <body ref="3"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="5"><p ref="7"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "michel"
keydown
10
michel
stop
Enter the password "sEVVB" <body ref="3"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="5"><p ref="7"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10" value="michel"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "sEVVB"
keydown
2
sevvb
stop
press login <body ref="3"><div id="wrap" ref="4"><div id="area" ref="9"><div id="form" ref="5"><p ref="7"><label classes="bold" ref="8" text="username"></label><input_text id="username" ref="10" value="michel"></input_text></p><p ref="6"><label classes="bold" ref="1" text="password"></label><input_password id="password" ref="2" value="sevvb"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,1,} Enter the username "nathalie" <body ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div id="form" ref="8"><p ref="3"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1"></input_text></p><p ref="9"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the username "nathalie"
keydown
1
nathalie
stop
{click,5,} Enter the password "Rs" <body ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div id="form" ref="8"><p ref="3"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1" value="nathalie"></input_text></p><p ref="9"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="5"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>,
Enter the password "Rs"
keydown
5
rs
stop
press login <body ref="2"><div id="wrap" ref="6"><div id="area" ref="7"><div id="form" ref="8"><p ref="3"><label classes="bold" ref="4" text="username"></label><input_text id="username" ref="1" value="nathalie"></input_text></p><p ref="9"><label classes="bold" ref="10" text="password"></label><input_password id="password" ref="5" value="rs"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="ok"></button></div></div></div></body>
press login
click
11
null
stop
{click,12,} Enter the username "beaulah" <body ref="15"><div id="wrap" ref="5"><div id="area" ref="14"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="12"></input_text></p><p ref="11"><label classes="bold" ref="16" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="13" text="ok"></button></div></div></div></body>,
Enter the username "beaulah"
keydown
12
beaulah
stop
{click,4,}{click,9,} Enter the password "wu" <body ref="15"><div id="wrap" ref="5"><div id="area" ref="14"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="12" value="beaulah"></input_text></p><p ref="11"><label classes="bold" ref="16" text="password"></label><input_password id="password" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="13" text="ok"></button></div></div></div></body>,
Enter the password "wu"
keydown
9
wu
stop
press login <body ref="15"><div id="wrap" ref="5"><div id="area" ref="14"><div id="form" ref="2"><p ref="3"><label classes="bold" ref="1" text="username"></label><input_text id="username" ref="12" value="beaulah"></input_text></p><p ref="11"><label classes="bold" ref="16" text="password"></label><input_password id="password" ref="9" value="wu"></input_password></p><button id="subbtn" classes="secondary-action" ref="13" text="ok"></button></div></div></div></body>
press login
click
13
null
stop
Click the button in the dialog box labeled "x". <body ref="20"><div id="wrap" ref="8"><div id="area" ref="19"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="18"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="3"><span id="ui-id-5" classes="ui-dialog-title" ref="9"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="13"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="21"><p ref="10" text="vestibulum volutpat id ut. lectus."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="1"><div classes="ui-dialog-buttonset" ref="4"><button classes="ui-button ui-corner-all ui-widget" ref="7" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="15" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="22"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="14"></div><div classes="ui-resizable-handle ui-resizable-w" ref="2"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="17"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="11"></div></div></body>
Click the button in the dialog box labeled "x".
click
13
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="14"><div id="wrap" ref="3"><div id="area" ref="17"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="1"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-4" classes="ui-dialog-title" ref="11"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="16"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="13"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="20"><p ref="19" text="sed ultrices amet ante. phasellus."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="21"><div classes="ui-dialog-buttonset" ref="8"><button classes="ui-button ui-corner-all ui-widget" ref="7" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="2" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="4"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="6"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="22"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
7
null
stop
Click the button in the dialog box labeled "OK". <body ref="22"><div id="wrap" ref="20"><div id="area" ref="13"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="5"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="11"><span id="ui-id-1" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="8"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="9"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="14" text="amet mattis condimentum. fermentum morbi amet,. dictum."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="15"><div classes="ui-dialog-buttonset" ref="18"><button classes="ui-button ui-corner-all ui-widget" ref="6" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="7" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="19"></div><div classes="ui-resizable-handle ui-resizable-w" ref="2"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="4"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="21"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Click the button in the dialog box labeled "OK".
click
7
null
stop
Click the button in the dialog box labeled "OK". <body ref="4"><div id="wrap" ref="15"><div id="area" ref="20"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="7"><span id="ui-id-7" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="22"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="8"><p ref="16" text="mattis tempor. elementum mauris ullamcorper."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="17"><div classes="ui-dialog-buttonset" ref="9"><button classes="ui-button ui-corner-all ui-widget" ref="1" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="21" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="19"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></div><div classes="ui-resizable-handle ui-resizable-w" ref="10"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="6"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Click the button in the dialog box labeled "OK".
click
21
null
stop
Click the button in the dialog box labeled "OK". <body ref="8"><div id="wrap" ref="5"><div id="area" ref="9"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="17"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-2" classes="ui-dialog-title" ref="20"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="16"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="3" text="massa. ultricies. amet. ac."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="22"><div classes="ui-dialog-buttonset" ref="10"><button classes="ui-button ui-corner-all ui-widget" ref="19" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="4" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></div><div classes="ui-resizable-handle ui-resizable-w" ref="14"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="21"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="15"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="6"></div></div></body>
Click the button in the dialog box labeled "OK".
click
4
null
stop
Click the button in the dialog box labeled "x". <body ref="3"><div id="wrap" ref="22"><div id="area" ref="8"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="4"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-4" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="19"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="20"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="12"><p ref="6" text="erat volutpat tincidunt at."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="21"><div classes="ui-dialog-buttonset" ref="16"><button classes="ui-button ui-corner-all ui-widget" ref="18" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="7" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></div><div classes="ui-resizable-handle ui-resizable-w" ref="2"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="11"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="1"></div></div></body>
Click the button in the dialog box labeled "x".
click
19
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="7"><div id="wrap" ref="2"><div id="area" ref="17"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="16"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-1" classes="ui-dialog-title" ref="6"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="4"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="11"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="14"><p ref="1" text="sodales augue feugiat porttitor malesuada sit id."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="19"><div classes="ui-dialog-buttonset" ref="15"><button classes="ui-button ui-corner-all ui-widget" ref="13" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="9" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="5"></div><div classes="ui-resizable-handle ui-resizable-e" ref="20"></div><div classes="ui-resizable-handle ui-resizable-s" ref="21"></div><div classes="ui-resizable-handle ui-resizable-w" ref="22"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="18"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="8"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="3"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
13
null
stop
Click the button in the dialog box labeled "x". <body ref="18"><div id="wrap" ref="22"><div id="area" ref="17"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="7"><span id="ui-id-3" classes="ui-dialog-title" ref="19"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="9"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="20"><p ref="13" text="pharetra vel. montes, quis."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="1"><div classes="ui-dialog-buttonset" ref="10"><button classes="ui-button ui-corner-all ui-widget" ref="15" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="8" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="11"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="21"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="2"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="4"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Click the button in the dialog box labeled "x".
click
5
null
stop
Click the button in the dialog box labeled "x". <body ref="4"><div id="wrap" ref="14"><div id="area" ref="20"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="18"><span id="ui-id-2" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="8"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="5"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="15"><p ref="2" text="elementum,. feugiat. rhoncus mus. massa."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="17"><div classes="ui-dialog-buttonset" ref="22"><button classes="ui-button ui-corner-all ui-widget" ref="10" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="6" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="19"></div><div classes="ui-resizable-handle ui-resizable-e" ref="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="21"></div><div classes="ui-resizable-handle ui-resizable-w" ref="3"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="16"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Click the button in the dialog box labeled "x".
click
8
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="18"><div id="wrap" ref="10"><div id="area" ref="11"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="9"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="22"><span id="ui-id-3" classes="ui-dialog-title" ref="8"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="21"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="16"><p ref="7" text="morbi vitae sed. pellentesque lectus ultrices."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="13"><div classes="ui-dialog-buttonset" ref="12"><button classes="ui-button ui-corner-all ui-widget" ref="15" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="19" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="20"></div><div classes="ui-resizable-handle ui-resizable-w" ref="4"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="14"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="1"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
15
null
stop
Click the button in the dialog box labeled "x". <body ref="8"><div id="wrap" ref="21"><div id="area" ref="11"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="2"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="3"><span id="ui-id-2" classes="ui-dialog-title" ref="6"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="15"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="20" text="dis parturient rhoncus, donec semper vel sollicitudin."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="5"><div classes="ui-dialog-buttonset" ref="13"><button classes="ui-button ui-corner-all ui-widget" ref="22" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="17" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="16"></div><div classes="ui-resizable-handle ui-resizable-e" ref="7"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="19"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="1"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Click the button in the dialog box labeled "x".
click
18
null
stop
Click the button in the dialog box labeled "x". <body ref="1"><div id="wrap" ref="11"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="7"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="17"><span id="ui-id-1" classes="ui-dialog-title" ref="19"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="20"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="22"><p ref="15" text="fames consectetur. tempus ultricies."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="10"><div classes="ui-dialog-buttonset" ref="4"><button classes="ui-button ui-corner-all ui-widget" ref="9" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="21" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></div><div classes="ui-resizable-handle ui-resizable-w" ref="13"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="2"></div></div></body>
Click the button in the dialog box labeled "x".
click
18
null
stop
Click the button in the dialog box labeled "x". <body ref="2"><div id="wrap" ref="18"><div id="area" ref="12"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="5"><span id="ui-id-2" classes="ui-dialog-title" ref="21"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="22"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="4"><p ref="3" text="ut ut consectetur et nulla."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="10"><div classes="ui-dialog-buttonset" ref="9"><button classes="ui-button ui-corner-all ui-widget" ref="19" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="17" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="16"></div><div classes="ui-resizable-handle ui-resizable-w" ref="20"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Click the button in the dialog box labeled "x".
click
7
null
stop
Click the button in the dialog box labeled "x". <body ref="9"><div id="wrap" ref="21"><div id="area" ref="18"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="16"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="3"><span id="ui-id-2" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="13"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="14" text="lacus, sapien, at turpis sollicitudin rhoncus."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="6"><div classes="ui-dialog-buttonset" ref="7"><button classes="ui-button ui-corner-all ui-widget" ref="22" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="8" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="12"></div><div classes="ui-resizable-handle ui-resizable-w" ref="17"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="5"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="20"></div></div></body>
Click the button in the dialog box labeled "x".
click
13
null
stop
Click the button in the dialog box labeled "OK". <body ref="21"><div id="wrap" ref="16"><div id="area" ref="12"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="8"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="18"><span id="ui-id-5" classes="ui-dialog-title" ref="14"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="22"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="3"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="6"><p ref="9" text="magna scelerisque ut. enim."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="7"><div classes="ui-dialog-buttonset" ref="10"><button classes="ui-button ui-corner-all ui-widget" ref="4" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="1" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></div><div classes="ui-resizable-handle ui-resizable-w" ref="15"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="13"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="20"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="2"></div></div></body>
Click the button in the dialog box labeled "OK".
click
1
null
stop
Click the button in the dialog box labeled "x". <body ref="8"><div id="wrap" ref="4"><div id="area" ref="6"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="2"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-3" classes="ui-dialog-title" ref="19"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="7"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="13"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="15"><p ref="21" text="auctor magna. tempus dictumst sem mus."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="12"><div classes="ui-dialog-buttonset" ref="9"><button classes="ui-button ui-corner-all ui-widget" ref="20" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="10" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="17"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></div><div classes="ui-resizable-handle ui-resizable-w" ref="18"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="16"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="5"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="8"></div></div></body>
Click the button in the dialog box labeled "x".
click
7
null
stop
Click the button in the dialog box labeled "x". <body ref="18"><div id="wrap" ref="16"><div id="area" ref="17"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="19"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-3" classes="ui-dialog-title" ref="15"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="12"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="14"><p ref="20" text="erat. placerat ipsum faucibus. risus."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="9"><div classes="ui-dialog-buttonset" ref="21"><button classes="ui-button ui-corner-all ui-widget" ref="8" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="11" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="3"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></div><div classes="ui-resizable-handle ui-resizable-w" ref="7"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="4"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="5"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="18"></div></div></body>
Click the button in the dialog box labeled "x".
click
12
null
stop
Click the button in the dialog box labeled "OK". <body ref="20"><div id="wrap" ref="16"><div id="area" ref="2"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="18"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="11"><span id="ui-id-4" classes="ui-dialog-title" ref="21"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="4"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="13" text="nibh facilisi proin interdum. vitae dictum."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="3"><button classes="ui-button ui-corner-all ui-widget" ref="9" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="7" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="10"></div><div classes="ui-resizable-handle ui-resizable-w" ref="19"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="12"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="20"></div></div></body>
Click the button in the dialog box labeled "OK".
click
7
null
stop
Click the button in the dialog box labeled "OK". <body ref="14"><div id="wrap" ref="22"><div id="area" ref="2"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="3"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="4"><span id="ui-id-9" classes="ui-dialog-title" ref="1"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="9"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="13"><p ref="15" text="eu auctor. justo consequat, semper. blandit."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="12"><div classes="ui-dialog-buttonset" ref="16"><button classes="ui-button ui-corner-all ui-widget" ref="21" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="5" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="8"></div><div classes="ui-resizable-handle ui-resizable-e" ref="7"></div><div classes="ui-resizable-handle ui-resizable-s" ref="10"></div><div classes="ui-resizable-handle ui-resizable-w" ref="6"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="20"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="11"></div></div></body>
Click the button in the dialog box labeled "OK".
click
5
null
stop
Click the button in the dialog box labeled "OK". <body ref="22"><div id="wrap" ref="12"><div id="area" ref="1"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="7"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="2"><span id="ui-id-6" classes="ui-dialog-title" ref="11"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="21"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="3"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="16"><p ref="6" text="convallis pulvinar commodo. dictum non, turpis."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="19"><div classes="ui-dialog-buttonset" ref="4"><button classes="ui-button ui-corner-all ui-widget" ref="20" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="10" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="8"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="18"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Click the button in the dialog box labeled "OK".
click
10
null
stop
Click the button in the dialog box labeled "OK". <body ref="11"><div id="wrap" ref="7"><div id="area" ref="5"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="20"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="16"><span id="ui-id-4" classes="ui-dialog-title" ref="6"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="15" text="vel nec semper feugiat et. dui."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="3"><div classes="ui-dialog-buttonset" ref="12"><button classes="ui-button ui-corner-all ui-widget" ref="21" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="4" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></div><div classes="ui-resizable-handle ui-resizable-w" ref="13"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="22"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="17"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></div></div></body>
Click the button in the dialog box labeled "OK".
click
4
null
stop
Click the button in the dialog box labeled "x". <body ref="13"><div id="wrap" ref="14"><div id="area" ref="11"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="5"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="7"><span id="ui-id-3" classes="ui-dialog-title" ref="19"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="20"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="3"><p ref="12" text="elit magna neque consequat ac laoreet nulla."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="6"><div classes="ui-dialog-buttonset" ref="2"><button classes="ui-button ui-corner-all ui-widget" ref="17" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="15" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="8"></div><div classes="ui-resizable-handle ui-resizable-e" ref="18"></div><div classes="ui-resizable-handle ui-resizable-s" ref="10"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="21"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Click the button in the dialog box labeled "x".
click
20
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="12"><div id="wrap" ref="4"><div id="area" ref="21"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="3"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="15"><span id="ui-id-1" classes="ui-dialog-title" ref="11"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="18"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="7"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="6" text="egestas aliquet et eu egestas at."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="2"><div classes="ui-dialog-buttonset" ref="19"><button classes="ui-button ui-corner-all ui-widget" ref="8" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="9" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="1"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="22"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="13"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="20"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
8
null
stop
Click the button in the dialog box labeled "x". <body ref="1"><div id="wrap" ref="18"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="14"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="16"><span id="ui-id-4" classes="ui-dialog-title" ref="9"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="15"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="17" text="risus tristique adipiscing odio praesent donec quisque."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="13"><button classes="ui-button ui-corner-all ui-widget" ref="21" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="22" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></div><div classes="ui-resizable-handle ui-resizable-w" ref="20"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="11"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="19"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "x".
click
15
null
stop
Click the button in the dialog box labeled "OK". <body ref="2"><div id="wrap" ref="10"><div id="area" ref="7"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-1" classes="ui-dialog-title" ref="19"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="11"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="1"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="16"><p ref="5" text="sodales. quis nunc, vulputate posuere in cras."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="21"><div classes="ui-dialog-buttonset" ref="15"><button classes="ui-button ui-corner-all ui-widget" ref="3" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="12" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="9"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="22"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="20"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="6"></div></div></body>
Click the button in the dialog box labeled "OK".
click
12
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="8"><div id="wrap" ref="11"><div id="area" ref="16"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="17"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="13"><span id="ui-id-2" classes="ui-dialog-title" ref="5"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="10"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="15" text="pharetra sagittis, bibendum. in eu dui, malesuada."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="1"><div classes="ui-dialog-buttonset" ref="19"><button classes="ui-button ui-corner-all ui-widget" ref="12" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="14" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></div><div classes="ui-resizable-handle ui-resizable-w" ref="3"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="20"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="21"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="22"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
12
null
stop
Click the button in the dialog box labeled "x". <body ref="2"><div id="wrap" ref="8"><div id="area" ref="17"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="7"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="21"><span id="ui-id-3" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="10"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="1"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="19"><p ref="20" text="elit, turpis dignissim viverra id dignissim."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="16"><div classes="ui-dialog-buttonset" ref="18"><button classes="ui-button ui-corner-all ui-widget" ref="15" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="5" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="6"></div><div classes="ui-resizable-handle ui-resizable-e" ref="3"></div><div classes="ui-resizable-handle ui-resizable-s" ref="11"></div><div classes="ui-resizable-handle ui-resizable-w" ref="13"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="14"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="4"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="2"></div></div></body>
Click the button in the dialog box labeled "x".
click
10
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="4"><div id="wrap" ref="20"><div id="area" ref="18"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="5"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="22"><span id="ui-id-4" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="1"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="21"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="6"><p ref="8" text="senectus volutpat id at cras."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="7"><div classes="ui-dialog-buttonset" ref="11"><button classes="ui-button ui-corner-all ui-widget" ref="10" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="3" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="14"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="19"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="16"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="2"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
10
null
stop
Click the button in the dialog box labeled "x". <body ref="4"><div id="wrap" ref="16"><div id="area" ref="13"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-1" classes="ui-dialog-title" ref="20"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="8"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="15"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="21"><p ref="10" text="faucibus lorem habitant rhoncus enim facilisis."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="3"><div classes="ui-dialog-buttonset" ref="6"><button classes="ui-button ui-corner-all ui-widget" ref="7" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="18" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="22"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="17"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "x".
click
8
null
stop
Click the button in the dialog box labeled "OK". <body ref="4"><div id="wrap" ref="9"><div id="area" ref="1"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="20"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="8"><span id="ui-id-1" classes="ui-dialog-title" ref="6"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="22"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="10"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="2"><p ref="18" text="gravida. mattis feugiat. lacus convallis eget."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="12"><div classes="ui-dialog-buttonset" ref="14"><button classes="ui-button ui-corner-all ui-widget" ref="11" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="19" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></div><div classes="ui-resizable-handle ui-resizable-w" ref="7"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="21"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="13"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="5"></div></div></body>
Click the button in the dialog box labeled "OK".
click
19
null
stop
Click the button in the dialog box labeled "OK". <body ref="1"><div id="wrap" ref="14"><div id="area" ref="13"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="22"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="10"><span id="ui-id-4" classes="ui-dialog-title" ref="12"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="18"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="15"><p ref="7" text="sit eget lectus at."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="19"><div classes="ui-dialog-buttonset" ref="6"><button classes="ui-button ui-corner-all ui-widget" ref="11" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="3" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="20"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></div><div classes="ui-resizable-handle ui-resizable-w" ref="21"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="9"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="4"></div></div></body>
Click the button in the dialog box labeled "OK".
click
3
null
stop
Click the button in the dialog box labeled "x". <body ref="22"><div id="wrap" ref="15"><div id="area" ref="2"></div></div><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="7"><span id="ui-id-2" classes="ui-dialog-title" ref="13"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="17"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="4"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="19" text="quis nulla pulvinar aenean duis ipsum nascetur."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="21"><div classes="ui-dialog-buttonset" ref="1"><button classes="ui-button ui-corner-all ui-widget" ref="12" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="16" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="20"></div><div classes="ui-resizable-handle ui-resizable-w" ref="5"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="18"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Click the button in the dialog box labeled "x".
click
17
null
stop
Select 10/23/2016 as the date <body ref="72"><div id="wrap" ref="204"><div id="area" ref="189"><p ref="131"><t ref="-6" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="16"></input_text></p><button id="subbtn" classes="secondary-action" ref="63" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="70"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="91"><a classes="ui-datepicker-prev ui-corner-all" ref="146"><span classes="ui-icon ui-icon-circle-triangle-w" ref="92" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="161"><span classes="ui-icon ui-icon-circle-triangle-e" ref="55" text="next"></span></a><div classes="ui-datepicker-title" ref="123"><span classes="ui-datepicker-month" ref="174" text="december"></span><span classes="ui-datepicker-year" ref="108" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="57"><thead ref="193"><tr ref="190"><th classes="ui-datepicker-week-end" ref="32"><span ref="88" text="su"></span></th><th ref="155"><span ref="64" text="mo"></span></th><th ref="136"><span ref="33" text="tu"></span></th><th ref="202"><span ref="48" text="we"></span></th><th ref="191"><span ref="205" text="th"></span></th><th ref="101"><span ref="113" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="206"><span ref="121" text="sa"></span></th></tr></thead><tbody ref="67"><tr ref="80"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="103"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="141"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="148"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="109"></td><td classes=" " ref="76"><a classes="ui-state-default" ref="177" text="1"></a></td><td classes=" " ref="83"><a classes="ui-state-default" ref="158" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="13"><a classes="ui-state-default" ref="31" text="3"></a></td></tr><tr ref="195"><td classes=" ui-datepicker-week-end " ref="47"><a classes="ui-state-default" ref="176" text="4"></a></td><td classes=" " ref="153"><a classes="ui-state-default" ref="42" text="5"></a></td><td classes=" " ref="200"><a classes="ui-state-default" ref="77" text="6"></a></td><td classes=" " ref="26"><a classes="ui-state-default" ref="29" text="7"></a></td><td classes=" " ref="1"><a classes="ui-state-default" ref="207" text="8"></a></td><td classes=" " ref="149"><a classes="ui-state-default" ref="132" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="135"><a classes="ui-state-default" ref="53" text="10"></a></td></tr><tr ref="112"><td classes=" ui-datepicker-week-end " ref="50"><a classes="ui-state-default" ref="17" text="11"></a></td><td classes=" " ref="3"><a classes="ui-state-default" ref="38" text="12"></a></td><td classes=" " ref="111"><a classes="ui-state-default" ref="99" text="13"></a></td><td classes=" " ref="164"><a classes="ui-state-default" ref="43" text="14"></a></td><td classes=" " ref="168"><a classes="ui-state-default" ref="122" text="15"></a></td><td classes=" " ref="171"><a classes="ui-state-default" ref="188" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="96"><a classes="ui-state-default" ref="105" text="17"></a></td></tr><tr ref="27"><td classes=" ui-datepicker-week-end " ref="2"><a classes="ui-state-default" ref="25" text="18"></a></td><td classes=" " ref="11"><a classes="ui-state-default" ref="46" text="19"></a></td><td classes=" " ref="24"><a classes="ui-state-default" ref="10" text="20"></a></td><td classes=" " ref="143"><a classes="ui-state-default" ref="180" text="21"></a></td><td classes=" " ref="18"><a classes="ui-state-default" ref="147" text="22"></a></td><td classes=" " ref="36"><a classes="ui-state-default" ref="52" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="173"><a classes="ui-state-default" ref="84" text="24"></a></td></tr><tr ref="15"><td classes=" ui-datepicker-week-end " ref="192"><a classes="ui-state-default" ref="186" text="25"></a></td><td classes=" " ref="170"><a classes="ui-state-default" ref="73" text="26"></a></td><td classes=" " ref="39"><a classes="ui-state-default" ref="62" text="27"></a></td><td classes=" " ref="61"><a classes="ui-state-default" ref="151" text="28"></a></td><td classes=" " ref="23"><a classes="ui-state-default" ref="6" text="29"></a></td><td classes=" " ref="87"><a classes="ui-state-default" ref="12" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="115"><a classes="ui-state-default ui-state-hover" ref="75" text="31"></a></td></tr></tbody></table></div></body>,
Select 10/23/2016 as the date
click
16
null
continue
{click,16,} Select 10/23/2016 as the date <body ref="72"><div id="wrap" ref="204"><div id="area" ref="189"><p ref="131"><t ref="-24" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="16"></input_text></p><button id="subbtn" classes="secondary-action" ref="63" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="70"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="179"><a classes="ui-datepicker-prev ui-corner-all" ref="130"><span classes="ui-icon ui-icon-circle-triangle-w" ref="21" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all" ref="120"><span classes="ui-icon ui-icon-circle-triangle-e" ref="167" text="next"></span></a><div classes="ui-datepicker-title" ref="162"><span classes="ui-datepicker-month" ref="45" text="october"></span><span classes="ui-datepicker-year" ref="203" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="178"><thead ref="184"><tr ref="8"><th classes="ui-datepicker-week-end" ref="208"><span ref="144" text="su"></span></th><th ref="71"><span ref="68" text="mo"></span></th><th ref="124"><span ref="187" text="tu"></span></th><th ref="40"><span ref="95" text="we"></span></th><th ref="126"><span ref="156" text="th"></span></th><th ref="169"><span ref="163" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="166"><span ref="152" text="sa"></span></th></tr></thead><tbody ref="14"><tr ref="133"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="201"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="4"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="116"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="139"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="85"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="175"></td><td classes=" ui-datepicker-week-end " ref="35"><a classes="ui-state-default" ref="194" text="1"></a></td></tr><tr ref="197"><td classes=" ui-datepicker-week-end " ref="160"><a classes="ui-state-default" ref="89" text="2"></a></td><td classes=" " ref="82"><a classes="ui-state-default" ref="100" text="3"></a></td><td classes=" " ref="157"><a classes="ui-state-default" ref="159" text="4"></a></td><td classes=" " ref="140"><a classes="ui-state-default" ref="97" text="5"></a></td><td classes=" " ref="78"><a classes="ui-state-default" ref="142" text="6"></a></td><td classes=" " ref="20"><a classes="ui-state-default" ref="79" text="7"></a></td><td classes=" ui-datepicker-week-end " ref="74"><a classes="ui-state-default" ref="117" text="8"></a></td></tr><tr ref="137"><td classes=" ui-datepicker-week-end " ref="209"><a classes="ui-state-default" ref="107" text="9"></a></td><td classes=" " ref="172"><a classes="ui-state-default" ref="196" text="10"></a></td><td classes=" " ref="37"><a classes="ui-state-default" ref="44" text="11"></a></td><td classes=" " ref="5"><a classes="ui-state-default" ref="165" text="12"></a></td><td classes=" " ref="51"><a classes="ui-state-default" ref="129" text="13"></a></td><td classes=" " ref="19"><a classes="ui-state-default" ref="128" text="14"></a></td><td classes=" ui-datepicker-week-end " ref="90"><a classes="ui-state-default" ref="41" text="15"></a></td></tr><tr ref="138"><td classes=" ui-datepicker-week-end " ref="54"><a classes="ui-state-default" ref="114" text="16"></a></td><td classes=" " ref="199"><a classes="ui-state-default" ref="30" text="17"></a></td><td classes=" " ref="86"><a classes="ui-state-default" ref="145" text="18"></a></td><td classes=" " ref="183"><a classes="ui-state-default" ref="118" text="19"></a></td><td classes=" " ref="58"><a classes="ui-state-default" ref="106" text="20"></a></td><td classes=" " ref="181"><a classes="ui-state-default" ref="185" text="21"></a></td><td classes=" ui-datepicker-week-end " ref="98"><a classes="ui-state-default" ref="9" text="22"></a></td></tr><tr ref="94"><td classes=" ui-datepicker-week-end " ref="22"><a classes="ui-state-default ui-state-hover" ref="49" text="23"></a></td><td classes=" " ref="127"><a classes="ui-state-default" ref="7" text="24"></a></td><td classes=" " ref="93"><a classes="ui-state-default" ref="69" text="25"></a></td><td classes=" " ref="102"><a classes="ui-state-default" ref="60" text="26"></a></td><td classes=" " ref="56"><a classes="ui-state-default" ref="34" text="27"></a></td><td classes=" " ref="150"><a classes="ui-state-default" ref="182" text="28"></a></td><td classes=" ui-datepicker-week-end " ref="110"><a classes="ui-state-default" ref="81" text="29"></a></td></tr><tr ref="28"><td classes=" ui-datepicker-week-end " ref="59"><a classes="ui-state-default" ref="66" text="30"></a></td><td classes=" " ref="65"><a classes="ui-state-default" ref="134" text="31"></a></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="104"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="119"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="198"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="125"></td><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="154"></td></tr></tbody></table></div></body>,
Select 10/23/2016 as the date
click
49
null
stop
Select 12/30/2016 as the date <body ref="62"><div id="wrap" ref="64"><div id="area" ref="77"><p ref="30"><t ref="-6" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="103"></input_text></p><button id="subbtn" classes="secondary-action" ref="96" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="56"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="49"><a classes="ui-datepicker-prev ui-corner-all" ref="102"><span classes="ui-icon ui-icon-circle-triangle-w" ref="72" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="16"><span classes="ui-icon ui-icon-circle-triangle-e" ref="39" text="next"></span></a><div classes="ui-datepicker-title" ref="76"><span classes="ui-datepicker-month" ref="71" text="december"></span><span classes="ui-datepicker-year" ref="41" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="45"><thead ref="36"><tr ref="90"><th classes="ui-datepicker-week-end" ref="67"><span ref="15" text="su"></span></th><th ref="94"><span ref="55" text="mo"></span></th><th ref="53"><span ref="78" text="tu"></span></th><th ref="59"><span ref="4" text="we"></span></th><th ref="97"><span ref="9" text="th"></span></th><th ref="44"><span ref="40" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="18"><span ref="19" text="sa"></span></th></tr></thead><tbody ref="2"><tr ref="47"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="74"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="23"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="26"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="50"></td><td classes=" " ref="11"><a classes="ui-state-default" ref="8" text="1"></a></td><td classes=" " ref="33"><a classes="ui-state-default" ref="81" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="35"><a classes="ui-state-default" ref="58" text="3"></a></td></tr><tr ref="31"><td classes=" ui-datepicker-week-end " ref="46"><a classes="ui-state-default" ref="29" text="4"></a></td><td classes=" " ref="13"><a classes="ui-state-default" ref="12" text="5"></a></td><td classes=" " ref="5"><a classes="ui-state-default" ref="85" text="6"></a></td><td classes=" " ref="7"><a classes="ui-state-default" ref="14" text="7"></a></td><td classes=" " ref="83"><a classes="ui-state-default" ref="28" text="8"></a></td><td classes=" " ref="99"><a classes="ui-state-default" ref="21" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="93"><a classes="ui-state-default" ref="10" text="10"></a></td></tr><tr ref="37"><td classes=" ui-datepicker-week-end " ref="98"><a classes="ui-state-default" ref="104" text="11"></a></td><td classes=" " ref="91"><a classes="ui-state-default" ref="66" text="12"></a></td><td classes=" " ref="6"><a classes="ui-state-default" ref="60" text="13"></a></td><td classes=" " ref="75"><a classes="ui-state-default" ref="32" text="14"></a></td><td classes=" " ref="34"><a classes="ui-state-default" ref="89" text="15"></a></td><td classes=" " ref="51"><a classes="ui-state-default" ref="79" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="63"><a classes="ui-state-default" ref="3" text="17"></a></td></tr><tr ref="101"><td classes=" ui-datepicker-week-end " ref="42"><a classes="ui-state-default" ref="87" text="18"></a></td><td classes=" " ref="92"><a classes="ui-state-default" ref="1" text="19"></a></td><td classes=" " ref="82"><a classes="ui-state-default" ref="84" text="20"></a></td><td classes=" " ref="25"><a classes="ui-state-default" ref="88" text="21"></a></td><td classes=" " ref="24"><a classes="ui-state-default" ref="43" text="22"></a></td><td classes=" " ref="20"><a classes="ui-state-default" ref="52" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="100"><a classes="ui-state-default" ref="38" text="24"></a></td></tr><tr ref="86"><td classes=" ui-datepicker-week-end " ref="69"><a classes="ui-state-default" ref="68" text="25"></a></td><td classes=" " ref="48"><a classes="ui-state-default" ref="65" text="26"></a></td><td classes=" " ref="22"><a classes="ui-state-default" ref="95" text="27"></a></td><td classes=" " ref="17"><a classes="ui-state-default" ref="80" text="28"></a></td><td classes=" " ref="57"><a classes="ui-state-default" ref="70" text="29"></a></td><td classes=" " ref="54"><a classes="ui-state-default" ref="73" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="27"><a classes="ui-state-default ui-state-hover" ref="61" text="31"></a></td></tr></tbody></table></div></body>,
Select 12/30/2016 as the date
click
103
null
continue
{click,103,} Select 12/30/2016 as the date <body ref="62"><div id="wrap" ref="64"><div id="area" ref="77"><p ref="30"><t ref="-12" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="103"></input_text></p><button id="subbtn" classes="secondary-action" ref="96" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="56"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="49"><a classes="ui-datepicker-prev ui-corner-all" ref="102"><span classes="ui-icon ui-icon-circle-triangle-w" ref="72" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="16"><span classes="ui-icon ui-icon-circle-triangle-e" ref="39" text="next"></span></a><div classes="ui-datepicker-title" ref="76"><span classes="ui-datepicker-month" ref="71" text="december"></span><span classes="ui-datepicker-year" ref="41" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="45"><thead ref="36"><tr ref="90"><th classes="ui-datepicker-week-end" ref="67"><span ref="15" text="su"></span></th><th ref="94"><span ref="55" text="mo"></span></th><th ref="53"><span ref="78" text="tu"></span></th><th ref="59"><span ref="4" text="we"></span></th><th ref="97"><span ref="9" text="th"></span></th><th ref="44"><span ref="40" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="18"><span ref="19" text="sa"></span></th></tr></thead><tbody ref="2"><tr ref="47"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="74"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="23"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="26"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="50"></td><td classes=" " ref="11"><a classes="ui-state-default" ref="8" text="1"></a></td><td classes=" " ref="33"><a classes="ui-state-default" ref="81" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="35"><a classes="ui-state-default" ref="58" text="3"></a></td></tr><tr ref="31"><td classes=" ui-datepicker-week-end " ref="46"><a classes="ui-state-default" ref="29" text="4"></a></td><td classes=" " ref="13"><a classes="ui-state-default" ref="12" text="5"></a></td><td classes=" " ref="5"><a classes="ui-state-default" ref="85" text="6"></a></td><td classes=" " ref="7"><a classes="ui-state-default" ref="14" text="7"></a></td><td classes=" " ref="83"><a classes="ui-state-default" ref="28" text="8"></a></td><td classes=" " ref="99"><a classes="ui-state-default" ref="21" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="93"><a classes="ui-state-default" ref="10" text="10"></a></td></tr><tr ref="37"><td classes=" ui-datepicker-week-end " ref="98"><a classes="ui-state-default" ref="104" text="11"></a></td><td classes=" " ref="91"><a classes="ui-state-default" ref="66" text="12"></a></td><td classes=" " ref="6"><a classes="ui-state-default" ref="60" text="13"></a></td><td classes=" " ref="75"><a classes="ui-state-default" ref="32" text="14"></a></td><td classes=" " ref="34"><a classes="ui-state-default" ref="89" text="15"></a></td><td classes=" " ref="51"><a classes="ui-state-default" ref="79" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="63"><a classes="ui-state-default" ref="3" text="17"></a></td></tr><tr ref="101"><td classes=" ui-datepicker-week-end " ref="42"><a classes="ui-state-default" ref="87" text="18"></a></td><td classes=" " ref="92"><a classes="ui-state-default" ref="1" text="19"></a></td><td classes=" " ref="82"><a classes="ui-state-default" ref="84" text="20"></a></td><td classes=" " ref="25"><a classes="ui-state-default" ref="88" text="21"></a></td><td classes=" " ref="24"><a classes="ui-state-default" ref="43" text="22"></a></td><td classes=" " ref="20"><a classes="ui-state-default" ref="52" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="100"><a classes="ui-state-default" ref="38" text="24"></a></td></tr><tr ref="86"><td classes=" ui-datepicker-week-end " ref="69"><a classes="ui-state-default" ref="68" text="25"></a></td><td classes=" " ref="48"><a classes="ui-state-default" ref="65" text="26"></a></td><td classes=" " ref="22"><a classes="ui-state-default" ref="95" text="27"></a></td><td classes=" " ref="17"><a classes="ui-state-default" ref="80" text="28"></a></td><td classes=" " ref="57"><a classes="ui-state-default" ref="70" text="29"></a></td><td classes=" " ref="54"><a classes="ui-state-default ui-state-hover" ref="73" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="27"><a classes="ui-state-default" ref="61" text="31"></a></td></tr></tbody></table></div></body>,
Select 12/30/2016 as the date
click
73
null
stop
click submit <body ref="62"><div id="wrap" ref="64"><div id="area" ref="77"><p ref="30"><t ref="-17" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="103" value="12/30/2016"></input_text></p><button id="subbtn" classes="secondary-action" ref="96" text="submit"></button></div></div></body>
click submit
click
96
null
stop
Select 09/15/2016 as the date <body ref="114"><div id="wrap" ref="187"><div id="area" ref="23"><p ref="143"><t ref="-6" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="158"></input_text></p><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="47"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="162"><a classes="ui-datepicker-prev ui-corner-all" ref="160"><span classes="ui-icon ui-icon-circle-triangle-w" ref="32" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="2"><span classes="ui-icon ui-icon-circle-triangle-e" ref="178" text="next"></span></a><div classes="ui-datepicker-title" ref="139"><span classes="ui-datepicker-month" ref="13" text="december"></span><span classes="ui-datepicker-year" ref="171" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="68"><thead ref="58"><tr ref="181"><th classes="ui-datepicker-week-end" ref="6"><span ref="74" text="su"></span></th><th ref="77"><span ref="62" text="mo"></span></th><th ref="161"><span ref="167" text="tu"></span></th><th ref="48"><span ref="95" text="we"></span></th><th ref="65"><span ref="156" text="th"></span></th><th ref="61"><span ref="176" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="198"><span ref="122" text="sa"></span></th></tr></thead><tbody ref="188"><tr ref="108"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="15"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="102"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="5"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="136"></td><td classes=" " ref="195"><a classes="ui-state-default" ref="175" text="1"></a></td><td classes=" " ref="116"><a classes="ui-state-default" ref="179" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="91"><a classes="ui-state-default" ref="183" text="3"></a></td></tr><tr ref="101"><td classes=" ui-datepicker-week-end " ref="117"><a classes="ui-state-default" ref="151" text="4"></a></td><td classes=" " ref="168"><a classes="ui-state-default" ref="63" text="5"></a></td><td classes=" " ref="177"><a classes="ui-state-default" ref="109" text="6"></a></td><td classes=" " ref="138"><a classes="ui-state-default" ref="149" text="7"></a></td><td classes=" " ref="174"><a classes="ui-state-default" ref="26" text="8"></a></td><td classes=" " ref="193"><a classes="ui-state-default" ref="90" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="46"><a classes="ui-state-default" ref="41" text="10"></a></td></tr><tr ref="28"><td classes=" ui-datepicker-week-end " ref="190"><a classes="ui-state-default" ref="137" text="11"></a></td><td classes=" " ref="184"><a classes="ui-state-default" ref="146" text="12"></a></td><td classes=" " ref="51"><a classes="ui-state-default" ref="107" text="13"></a></td><td classes=" " ref="89"><a classes="ui-state-default" ref="88" text="14"></a></td><td classes=" " ref="134"><a classes="ui-state-default" ref="85" text="15"></a></td><td classes=" " ref="3"><a classes="ui-state-default" ref="93" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="36"><a classes="ui-state-default" ref="173" text="17"></a></td></tr><tr ref="70"><td classes=" ui-datepicker-week-end " ref="50"><a classes="ui-state-default" ref="144" text="18"></a></td><td classes=" " ref="105"><a classes="ui-state-default" ref="7" text="19"></a></td><td classes=" " ref="96"><a classes="ui-state-default" ref="10" text="20"></a></td><td classes=" " ref="67"><a classes="ui-state-default" ref="39" text="21"></a></td><td classes=" " ref="165"><a classes="ui-state-default" ref="103" text="22"></a></td><td classes=" " ref="29"><a classes="ui-state-default" ref="152" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="86"><a classes="ui-state-default" ref="129" text="24"></a></td></tr><tr ref="135"><td classes=" ui-datepicker-week-end " ref="98"><a classes="ui-state-default" ref="24" text="25"></a></td><td classes=" " ref="199"><a classes="ui-state-default" ref="194" text="26"></a></td><td classes=" " ref="43"><a classes="ui-state-default" ref="196" text="27"></a></td><td classes=" " ref="166"><a classes="ui-state-default" ref="25" text="28"></a></td><td classes=" " ref="163"><a classes="ui-state-default" ref="132" text="29"></a></td><td classes=" " ref="191"><a classes="ui-state-default" ref="87" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="140"><a classes="ui-state-default ui-state-hover" ref="154" text="31"></a></td></tr></tbody></table></div></body>,
Select 09/15/2016 as the date
click
158
null
continue
{click,158,} Select 09/15/2016 as the date <body ref="114"><div id="wrap" ref="187"><div id="area" ref="23"><p ref="143"><t ref="-30" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="158"></input_text></p><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="47"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="56"><a classes="ui-datepicker-prev ui-corner-all" ref="19"><span classes="ui-icon ui-icon-circle-triangle-w" ref="44" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all" ref="31"><span classes="ui-icon ui-icon-circle-triangle-e" ref="83" text="next"></span></a><div classes="ui-datepicker-title" ref="73"><span classes="ui-datepicker-month" ref="118" text="september"></span><span classes="ui-datepicker-year" ref="40" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="11"><thead ref="34"><tr ref="94"><th classes="ui-datepicker-week-end" ref="148"><span ref="30" text="su"></span></th><th ref="200"><span ref="120" text="mo"></span></th><th ref="12"><span ref="170" text="tu"></span></th><th ref="8"><span ref="159" text="we"></span></th><th ref="76"><span ref="69" text="th"></span></th><th ref="37"><span ref="66" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="55"><span ref="22" text="sa"></span></th></tr></thead><tbody ref="182"><tr ref="110"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="185"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="115"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="79"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="9"></td><td classes=" " ref="82"><a classes="ui-state-default" ref="147" text="1"></a></td><td classes=" " ref="186"><a classes="ui-state-default" ref="130" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="81"><a classes="ui-state-default" ref="133" text="3"></a></td></tr><tr ref="49"><td classes=" ui-datepicker-week-end " ref="131"><a classes="ui-state-default" ref="4" text="4"></a></td><td classes=" " ref="112"><a classes="ui-state-default" ref="42" text="5"></a></td><td classes=" " ref="192"><a classes="ui-state-default" ref="106" text="6"></a></td><td classes=" " ref="150"><a classes="ui-state-default" ref="60" text="7"></a></td><td classes=" " ref="17"><a classes="ui-state-default" ref="78" text="8"></a></td><td classes=" " ref="57"><a classes="ui-state-default" ref="121" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="157"><a classes="ui-state-default" ref="16" text="10"></a></td></tr><tr ref="92"><td classes=" ui-datepicker-week-end " ref="64"><a classes="ui-state-default" ref="169" text="11"></a></td><td classes=" " ref="189"><a classes="ui-state-default" ref="18" text="12"></a></td><td classes=" " ref="145"><a classes="ui-state-default" ref="52" text="13"></a></td><td classes=" " ref="124"><a classes="ui-state-default" ref="1" text="14"></a></td><td classes=" " ref="59"><a classes="ui-state-default ui-state-hover" ref="38" text="15"></a></td><td classes=" " ref="164"><a classes="ui-state-default" ref="125" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="180"><a classes="ui-state-default" ref="126" text="17"></a></td></tr><tr ref="197"><td classes=" ui-datepicker-week-end " ref="142"><a classes="ui-state-default" ref="21" text="18"></a></td><td classes=" " ref="45"><a classes="ui-state-default" ref="128" text="19"></a></td><td classes=" " ref="80"><a classes="ui-state-default" ref="172" text="20"></a></td><td classes=" " ref="153"><a classes="ui-state-default" ref="113" text="21"></a></td><td classes=" " ref="99"><a classes="ui-state-default" ref="155" text="22"></a></td><td classes=" " ref="111"><a classes="ui-state-default" ref="123" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="97"><a classes="ui-state-default" ref="33" text="24"></a></td></tr><tr ref="100"><td classes=" ui-datepicker-week-end " ref="127"><a classes="ui-state-default" ref="71" text="25"></a></td><td classes=" " ref="119"><a classes="ui-state-default" ref="75" text="26"></a></td><td classes=" " ref="20"><a classes="ui-state-default" ref="35" text="27"></a></td><td classes=" " ref="84"><a classes="ui-state-default" ref="141" text="28"></a></td><td classes=" " ref="27"><a classes="ui-state-default" ref="104" text="29"></a></td><td classes=" " ref="54"><a classes="ui-state-default" ref="72" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="53"></td></tr></tbody></table></div></body>,
Select 09/15/2016 as the date
click
38
null
stop
Select 09/27/2016 as the date <body ref="171"><div id="wrap" ref="33"><div id="area" ref="112"><p ref="162"><t ref="-6" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="116"></input_text></p><button id="subbtn" classes="secondary-action" ref="164" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="190"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="108"><a classes="ui-datepicker-prev ui-corner-all" ref="151"><span classes="ui-icon ui-icon-circle-triangle-w" ref="50" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="100"><span classes="ui-icon ui-icon-circle-triangle-e" ref="130" text="next"></span></a><div classes="ui-datepicker-title" ref="196"><span classes="ui-datepicker-month" ref="89" text="december"></span><span classes="ui-datepicker-year" ref="78" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="8"><thead ref="81"><tr ref="186"><th classes="ui-datepicker-week-end" ref="79"><span ref="49" text="su"></span></th><th ref="38"><span ref="76" text="mo"></span></th><th ref="105"><span ref="68" text="tu"></span></th><th ref="181"><span ref="126" text="we"></span></th><th ref="7"><span ref="177" text="th"></span></th><th ref="72"><span ref="35" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="193"><span ref="39" text="sa"></span></th></tr></thead><tbody ref="170"><tr ref="99"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="23"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="146"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="114"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="36"></td><td classes=" " ref="84"><a classes="ui-state-default" ref="19" text="1"></a></td><td classes=" " ref="73"><a classes="ui-state-default" ref="194" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="101"><a classes="ui-state-default" ref="161" text="3"></a></td></tr><tr ref="122"><td classes=" ui-datepicker-week-end " ref="24"><a classes="ui-state-default" ref="12" text="4"></a></td><td classes=" " ref="45"><a classes="ui-state-default" ref="54" text="5"></a></td><td classes=" " ref="16"><a classes="ui-state-default" ref="127" text="6"></a></td><td classes=" " ref="156"><a classes="ui-state-default" ref="90" text="7"></a></td><td classes=" " ref="143"><a classes="ui-state-default" ref="32" text="8"></a></td><td classes=" " ref="178"><a classes="ui-state-default" ref="109" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="189"><a classes="ui-state-default" ref="149" text="10"></a></td></tr><tr ref="75"><td classes=" ui-datepicker-week-end " ref="40"><a classes="ui-state-default" ref="111" text="11"></a></td><td classes=" " ref="133"><a classes="ui-state-default" ref="172" text="12"></a></td><td classes=" " ref="1"><a classes="ui-state-default" ref="182" text="13"></a></td><td classes=" " ref="134"><a classes="ui-state-default" ref="110" text="14"></a></td><td classes=" " ref="195"><a classes="ui-state-default" ref="136" text="15"></a></td><td classes=" " ref="59"><a classes="ui-state-default" ref="144" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="154"><a classes="ui-state-default" ref="46" text="17"></a></td></tr><tr ref="145"><td classes=" ui-datepicker-week-end " ref="128"><a classes="ui-state-default" ref="160" text="18"></a></td><td classes=" " ref="147"><a classes="ui-state-default" ref="17" text="19"></a></td><td classes=" " ref="117"><a classes="ui-state-default" ref="4" text="20"></a></td><td classes=" " ref="56"><a classes="ui-state-default" ref="94" text="21"></a></td><td classes=" " ref="41"><a classes="ui-state-default" ref="120" text="22"></a></td><td classes=" " ref="11"><a classes="ui-state-default" ref="197" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="82"><a classes="ui-state-default" ref="124" text="24"></a></td></tr><tr ref="95"><td classes=" ui-datepicker-week-end " ref="6"><a classes="ui-state-default" ref="62" text="25"></a></td><td classes=" " ref="10"><a classes="ui-state-default" ref="71" text="26"></a></td><td classes=" " ref="102"><a classes="ui-state-default" ref="85" text="27"></a></td><td classes=" " ref="30"><a classes="ui-state-default" ref="34" text="28"></a></td><td classes=" " ref="113"><a classes="ui-state-default" ref="148" text="29"></a></td><td classes=" " ref="191"><a classes="ui-state-default" ref="104" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="51"><a classes="ui-state-default ui-state-hover" ref="28" text="31"></a></td></tr></tbody></table></div></body>,
Select 09/27/2016 as the date
click
116
null
continue
{click,116,} Select 09/27/2016 as the date <body ref="171"><div id="wrap" ref="33"><div id="area" ref="112"><p ref="162"><t ref="-42" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="116"></input_text></p><button id="subbtn" classes="secondary-action" ref="164" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="190"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="21"><a classes="ui-datepicker-prev ui-corner-all" ref="123"><span classes="ui-icon ui-icon-circle-triangle-w" ref="26" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all" ref="142"><span classes="ui-icon ui-icon-circle-triangle-e" ref="64" text="next"></span></a><div classes="ui-datepicker-title" ref="15"><span classes="ui-datepicker-month" ref="174" text="september"></span><span classes="ui-datepicker-year" ref="188" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="92"><thead ref="91"><tr ref="184"><th classes="ui-datepicker-week-end" ref="96"><span ref="55" text="su"></span></th><th ref="18"><span ref="167" text="mo"></span></th><th ref="131"><span ref="173" text="tu"></span></th><th ref="168"><span ref="44" text="we"></span></th><th ref="103"><span ref="63" text="th"></span></th><th ref="27"><span ref="159" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="140"><span ref="22" text="sa"></span></th></tr></thead><tbody ref="83"><tr ref="121"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="5"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="176"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="58"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="65"></td><td classes=" " ref="153"><a classes="ui-state-default" ref="42" text="1"></a></td><td classes=" " ref="192"><a classes="ui-state-default" ref="20" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="175"><a classes="ui-state-default" ref="43" text="3"></a></td></tr><tr ref="61"><td classes=" ui-datepicker-week-end " ref="165"><a classes="ui-state-default" ref="129" text="4"></a></td><td classes=" " ref="150"><a classes="ui-state-default" ref="163" text="5"></a></td><td classes=" " ref="25"><a classes="ui-state-default" ref="2" text="6"></a></td><td classes=" " ref="107"><a classes="ui-state-default" ref="77" text="7"></a></td><td classes=" " ref="118"><a classes="ui-state-default" ref="86" text="8"></a></td><td classes=" " ref="125"><a classes="ui-state-default" ref="180" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="187"><a classes="ui-state-default" ref="183" text="10"></a></td></tr><tr ref="66"><td classes=" ui-datepicker-week-end " ref="9"><a classes="ui-state-default" ref="57" text="11"></a></td><td classes=" " ref="155"><a classes="ui-state-default" ref="13" text="12"></a></td><td classes=" " ref="3"><a classes="ui-state-default" ref="166" text="13"></a></td><td classes=" " ref="47"><a classes="ui-state-default" ref="69" text="14"></a></td><td classes=" " ref="93"><a classes="ui-state-default" ref="98" text="15"></a></td><td classes=" " ref="158"><a classes="ui-state-default" ref="179" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="52"><a classes="ui-state-default" ref="48" text="17"></a></td></tr><tr ref="198"><td classes=" ui-datepicker-week-end " ref="29"><a classes="ui-state-default" ref="87" text="18"></a></td><td classes=" " ref="152"><a classes="ui-state-default" ref="135" text="19"></a></td><td classes=" " ref="80"><a classes="ui-state-default" ref="97" text="20"></a></td><td classes=" " ref="138"><a classes="ui-state-default" ref="37" text="21"></a></td><td classes=" " ref="141"><a classes="ui-state-default" ref="119" text="22"></a></td><td classes=" " ref="67"><a classes="ui-state-default" ref="53" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="70"><a classes="ui-state-default" ref="132" text="24"></a></td></tr><tr ref="14"><td classes=" ui-datepicker-week-end " ref="106"><a classes="ui-state-default" ref="74" text="25"></a></td><td classes=" " ref="199"><a classes="ui-state-default" ref="60" text="26"></a></td><td classes=" " ref="115"><a classes="ui-state-default ui-state-hover" ref="200" text="27"></a></td><td classes=" " ref="31"><a classes="ui-state-default" ref="139" text="28"></a></td><td classes=" " ref="157"><a classes="ui-state-default" ref="137" text="29"></a></td><td classes=" " ref="88"><a classes="ui-state-default" ref="185" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="169"></td></tr></tbody></table></div></body>,
Select 09/27/2016 as the date
click
200
null
stop
Select 09/27/2016 as the date <body ref="49"><div id="wrap" ref="157"><div id="area" ref="105"><p ref="65"><t ref="-6" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="136"></input_text></p><button id="subbtn" classes="secondary-action" ref="135" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="103"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="199"><a classes="ui-datepicker-prev ui-corner-all" ref="156"><span classes="ui-icon ui-icon-circle-triangle-w" ref="167" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all ui-state-disabled" ref="145"><span classes="ui-icon ui-icon-circle-triangle-e" ref="38" text="next"></span></a><div classes="ui-datepicker-title" ref="79"><span classes="ui-datepicker-month" ref="174" text="december"></span><span classes="ui-datepicker-year" ref="33" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="175"><thead ref="19"><tr ref="50"><th classes="ui-datepicker-week-end" ref="98"><span ref="178" text="su"></span></th><th ref="152"><span ref="26" text="mo"></span></th><th ref="168"><span ref="161" text="tu"></span></th><th ref="143"><span ref="186" text="we"></span></th><th ref="170"><span ref="53" text="th"></span></th><th ref="184"><span ref="42" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="7"><span ref="126" text="sa"></span></th></tr></thead><tbody ref="51"><tr ref="120"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="180"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="73"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="70"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="34"></td><td classes=" " ref="162"><a classes="ui-state-default" ref="84" text="1"></a></td><td classes=" " ref="30"><a classes="ui-state-default" ref="69" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="200"><a classes="ui-state-default" ref="58" text="3"></a></td></tr><tr ref="62"><td classes=" ui-datepicker-week-end " ref="185"><a classes="ui-state-default" ref="99" text="4"></a></td><td classes=" " ref="5"><a classes="ui-state-default" ref="176" text="5"></a></td><td classes=" " ref="112"><a classes="ui-state-default" ref="144" text="6"></a></td><td classes=" " ref="14"><a classes="ui-state-default" ref="6" text="7"></a></td><td classes=" " ref="32"><a classes="ui-state-default" ref="10" text="8"></a></td><td classes=" " ref="187"><a classes="ui-state-default" ref="66" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="107"><a classes="ui-state-default" ref="189" text="10"></a></td></tr><tr ref="95"><td classes=" ui-datepicker-week-end " ref="110"><a classes="ui-state-default" ref="92" text="11"></a></td><td classes=" " ref="172"><a classes="ui-state-default" ref="59" text="12"></a></td><td classes=" " ref="108"><a classes="ui-state-default" ref="137" text="13"></a></td><td classes=" " ref="15"><a classes="ui-state-default" ref="47" text="14"></a></td><td classes=" " ref="163"><a classes="ui-state-default" ref="36" text="15"></a></td><td classes=" " ref="149"><a classes="ui-state-default" ref="37" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="44"><a classes="ui-state-default" ref="12" text="17"></a></td></tr><tr ref="77"><td classes=" ui-datepicker-week-end " ref="134"><a classes="ui-state-default" ref="194" text="18"></a></td><td classes=" " ref="106"><a classes="ui-state-default" ref="104" text="19"></a></td><td classes=" " ref="46"><a classes="ui-state-default" ref="80" text="20"></a></td><td classes=" " ref="129"><a classes="ui-state-default" ref="21" text="21"></a></td><td classes=" " ref="63"><a classes="ui-state-default" ref="61" text="22"></a></td><td classes=" " ref="72"><a classes="ui-state-default" ref="56" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="101"><a classes="ui-state-default" ref="93" text="24"></a></td></tr><tr ref="139"><td classes=" ui-datepicker-week-end " ref="188"><a classes="ui-state-default" ref="87" text="25"></a></td><td classes=" " ref="100"><a classes="ui-state-default" ref="102" text="26"></a></td><td classes=" " ref="164"><a classes="ui-state-default" ref="182" text="27"></a></td><td classes=" " ref="173"><a classes="ui-state-default" ref="3" text="28"></a></td><td classes=" " ref="150"><a classes="ui-state-default" ref="57" text="29"></a></td><td classes=" " ref="97"><a classes="ui-state-default" ref="20" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-days-cell-over " ref="196"><a classes="ui-state-default ui-state-hover" ref="67" text="31"></a></td></tr></tbody></table></div></body>,
Select 09/27/2016 as the date
click
136
null
continue
{click,136,} Select 09/27/2016 as the date <body ref="49"><div id="wrap" ref="157"><div id="area" ref="105"><p ref="65"><t ref="-108" text="date:"></t><input_text id="datepicker" classes="hasdatepicker" ref="136"></input_text></p><button id="subbtn" classes="secondary-action" ref="135" text="submit"></button></div></div><div id="ui-datepicker-div" classes="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" ref="103"><div classes="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all" ref="9"><a classes="ui-datepicker-prev ui-corner-all" ref="125"><span classes="ui-icon ui-icon-circle-triangle-w" ref="123" text="prev"></span></a><a classes="ui-datepicker-next ui-corner-all" ref="197"><span classes="ui-icon ui-icon-circle-triangle-e" ref="27" text="next"></span></a><div classes="ui-datepicker-title" ref="158"><span classes="ui-datepicker-month" ref="75" text="september"></span><span classes="ui-datepicker-year" ref="138" text="2016"></span></div></div><table classes="ui-datepicker-calendar" ref="190"><thead ref="154"><tr ref="24"><th classes="ui-datepicker-week-end" ref="111"><span ref="192" text="su"></span></th><th ref="78"><span ref="169" text="mo"></span></th><th ref="81"><span ref="142" text="tu"></span></th><th ref="179"><span ref="13" text="we"></span></th><th ref="8"><span ref="159" text="th"></span></th><th ref="166"><span ref="153" text="fr"></span></th><th classes="ui-datepicker-week-end" ref="94"><span ref="17" text="sa"></span></th></tr></thead><tbody ref="71"><tr ref="148"><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="23"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="113"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="64"></td><td classes=" ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="39"></td><td classes=" " ref="133"><a classes="ui-state-default" ref="83" text="1"></a></td><td classes=" " ref="4"><a classes="ui-state-default" ref="141" text="2"></a></td><td classes=" ui-datepicker-week-end " ref="35"><a classes="ui-state-default" ref="131" text="3"></a></td></tr><tr ref="89"><td classes=" ui-datepicker-week-end " ref="193"><a classes="ui-state-default" ref="171" text="4"></a></td><td classes=" " ref="195"><a classes="ui-state-default" ref="140" text="5"></a></td><td classes=" " ref="48"><a classes="ui-state-default" ref="121" text="6"></a></td><td classes=" " ref="122"><a classes="ui-state-default" ref="68" text="7"></a></td><td classes=" " ref="165"><a classes="ui-state-default" ref="151" text="8"></a></td><td classes=" " ref="54"><a classes="ui-state-default" ref="82" text="9"></a></td><td classes=" ui-datepicker-week-end " ref="191"><a classes="ui-state-default" ref="127" text="10"></a></td></tr><tr ref="85"><td classes=" ui-datepicker-week-end " ref="2"><a classes="ui-state-default" ref="29" text="11"></a></td><td classes=" " ref="119"><a classes="ui-state-default" ref="160" text="12"></a></td><td classes=" " ref="90"><a classes="ui-state-default" ref="147" text="13"></a></td><td classes=" " ref="74"><a classes="ui-state-default" ref="76" text="14"></a></td><td classes=" " ref="88"><a classes="ui-state-default" ref="18" text="15"></a></td><td classes=" " ref="116"><a classes="ui-state-default" ref="177" text="16"></a></td><td classes=" ui-datepicker-week-end " ref="183"><a classes="ui-state-default" ref="96" text="17"></a></td></tr><tr ref="22"><td classes=" ui-datepicker-week-end " ref="124"><a classes="ui-state-default" ref="155" text="18"></a></td><td classes=" " ref="118"><a classes="ui-state-default" ref="146" text="19"></a></td><td classes=" " ref="28"><a classes="ui-state-default" ref="55" text="20"></a></td><td classes=" " ref="43"><a classes="ui-state-default" ref="115" text="21"></a></td><td classes=" " ref="41"><a classes="ui-state-default" ref="45" text="22"></a></td><td classes=" " ref="128"><a classes="ui-state-default" ref="52" text="23"></a></td><td classes=" ui-datepicker-week-end " ref="60"><a classes="ui-state-default" ref="11" text="24"></a></td></tr><tr ref="86"><td classes=" ui-datepicker-week-end " ref="1"><a classes="ui-state-default" ref="181" text="25"></a></td><td classes=" " ref="91"><a classes="ui-state-default" ref="198" text="26"></a></td><td classes=" " ref="132"><a classes="ui-state-default ui-state-hover" ref="109" text="27"></a></td><td classes=" " ref="130"><a classes="ui-state-default" ref="31" text="28"></a></td><td classes=" " ref="16"><a classes="ui-state-default" ref="117" text="29"></a></td><td classes=" " ref="114"><a classes="ui-state-default" ref="25" text="30"></a></td><td classes=" ui-datepicker-week-end ui-datepicker-other-month ui-datepicker-unselectable ui-state-disabled" ref="40"></td></tr></tbody></table></div></body>,
Select 09/27/2016 as the date
click
109
null
stop
Expand the sections below <body ref="7"><div id="wrap" ref="18"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="1"><t ref="-59" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="3"><span classes="alink" ref="17" text="purus."></span><t ref="-60" text="magna risus"></t><span classes="alink" ref="15" text="pellentesque"></span><t ref="-61" text="at quam venenatis dolor"></t><span classes="alink" ref="16" text="nibh"></span><span classes="alink" ref="14" text="et"></span><t ref="-62" text="est elit aliquet feugiat malesuada"></t><t ref="-63" text="phasellus vivamus. id placerat."></t><t ref="-64" text="mi."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="13"><t ref="-65" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><t ref="-66" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
13
null
stop
click on the link "et". <body ref="7"><div id="wrap" ref="18"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="1"><t ref="-112" text="section #1"></t></h3><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="13"><t ref="-113" text="section #2"></t></h3><div id="ui-id-22" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="20"><span classes="alink" ref="21" text="arcu."></span><t ref="-114" text="nibh fames ullamcorper"></t><t ref="-115" text="libero"></t><span classes="alink" ref="4" text="leo"></span><t ref="-116" text="ultrices"></t><span classes="alink" ref="8" text="in."></span><span classes="alink" ref="9" text="in"></span><span classes="alink" ref="10" text="dignissim"></span><t ref="-117" text="aenean etiam mollis dui, egestas"></t><t ref="-118" text="nec vulputate malesuada. enim."></t><t ref="-119" text="blandit."></t></div><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="2"><t ref="-120" text="section #3"></t></h3></div></div></body>,
click on the link "et".
click
2
null
stop
Expand the sections below <body ref="6"><div id="wrap" ref="4"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="9"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="11"><t ref="-69" text="section #1"></t></h3><div id="ui-id-26" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="5"><t ref="-70" text="porttitor"></t><span classes="alink" ref="8" text="faucibus"></span><t ref="-71" text="vel et"></t><span classes="alink" ref="19" text="laoreet"></span><t ref="-72" text="gravida vulputate. feugiat ac."></t><t ref="-73" text="imperdiet ut. tincidunt. molestie"></t><t ref="-74" text="sed"></t><span classes="alink" ref="12" text="aliquet"></span><t ref="-75" text="congue"></t><span classes="alink" ref="22" text="odio"></span><t ref="-76" text="tincidunt. massa faucibus."></t></div><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="14"><t ref="-77" text="section #2"></t></h3><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="7"><t ref="-78" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
14
null
stop
click on the link "Sodales". <body ref="6"><div id="wrap" ref="4"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="9"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="11"><t ref="-134" text="section #1"></t></h3><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="14"><t ref="-135" text="section #2"></t></h3><div id="ui-id-28" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="13"><t ref="-136" text="ut."></t><span classes="alink" ref="21" text="purus"></span><t ref="-137" text="duis. posuere ut lectus"></t><t ref="-138" text="nullam. porttitor"></t><span classes="alink" ref="10" text="magna"></span><t ref="-139" text="nibh."></t><t ref="-140" text="lobortis et."></t><span classes="alink" ref="16" text="blandit"></span><t ref="-141" text="mauris."></t><span classes="alink" ref="2" text="semper"></span><span classes="alink" ref="15" text="fusce"></span><t ref="-142" text="suscipit elit"></t><t ref="-143" text="tristique sit."></t></div><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="7"><t ref="-144" text="section #3"></t></h3></div></div></body>,
click on the link "Sodales".
click
7
null
stop
Expand the sections below <body ref="5"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="7"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
6
null
stop
click on the link "Adipiscing.". <body ref="5"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><h3 id="ui-id-7" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="6"><t ref="-54" text="section #1"></t></h3><div id="ui-id-8" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="4"><t ref="-55" text="eu ornare. ipsum in donec proin"></t><t ref="-56" text="sem posuere dolor id habitant"></t><t ref="-57" text="ultrices enim pharetra."></t><span classes="alink" ref="8" text="phasellus"></span><t ref="-58" text="eu dui hendrerit laoreet ornare."></t></div><h3 id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="7"><t ref="-59" text="section #2"></t></h3><h3 id="ui-id-11" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><t ref="-60" text="section #3"></t></h3></div></div></body>,
click on the link "Adipiscing.".
click
7
null
stop
Expand the sections below <body ref="2"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
6
null
stop
click on the link "id". <body ref="2"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-18" text="section #3"></t></h3></div></div></body>,
click on the link "id".
click
6
null
stop
Expand the sections below <body ref="9"><div id="wrap" ref="12"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="14"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="7"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
7
null
stop
click on the link "fermentum.". <body ref="9"><div id="wrap" ref="12"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="14"><t ref="-64" text="section #1"></t></h3><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="7"><t ref="-65" text="section #2"></t></h3><div id="ui-id-28" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="13"><t ref="-66" text="pretium sed"></t><span classes="alink" ref="17" text="id"></span><span classes="alink" ref="10" text="vel"></span><t ref="-67" text="sit quam"></t><t ref="-68" text="aliquet elit lacus cursus. sed"></t><t ref="-69" text="tempor adipiscing urna"></t><span classes="alink" ref="11" text="bibendum"></span><span classes="alink" ref="16" text="massa"></span><t ref="-70" text="habitasse"></t><t ref="-71" text="diam, dui"></t><span classes="alink" ref="8" text="in."></span></div><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="5"><t ref="-72" text="section #3"></t></h3></div></div></body>,
click on the link "fermentum.".
click
5
null
stop
Expand the sections below <body ref="5"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="6"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="2"><t ref="-59" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-60" text="nulla quis"></t><span classes="alink" ref="9" text="cras"></span><t ref="-61" text="urna,. tortor"></t><t ref="-62" text="imperdiet sit ultrices morbi"></t><span classes="alink" ref="3" text="enim,"></span><t ref="-63" text="etiam in etiam vitae pharetra sit."></t><t ref="-64" text="mi fringilla curabitur"></t><span classes="alink" ref="12" text="amet."></span></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-65" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-66" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
1
null
stop
click on the link "vestibulum,". <body ref="5"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="6"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="2"><t ref="-59" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="11"><t ref="-60" text="nulla quis"></t><span classes="alink" ref="9" text="cras"></span><t ref="-61" text="urna,. tortor"></t><t ref="-62" text="imperdiet sit ultrices morbi"></t><span classes="alink" ref="3" text="enim,"></span><t ref="-63" text="etiam in etiam vitae pharetra sit."></t><t ref="-64" text="mi fringilla curabitur"></t><span classes="alink" ref="12" text="amet."></span></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-65" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="13"><t ref="-66" text="section #3"></t></h3></div></div></body>,
click on the link "vestibulum,".
click
1
null
stop
Expand the sections below <body ref="6"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
1
null
stop
click on the link "imperdiet". <body ref="6"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="3"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-18" text="section #3"></t></h3></div></div></body>,
click on the link "imperdiet".
click
1
null
stop
Expand the sections below <body ref="19"><div id="wrap" ref="6"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="17"><t ref="-64" text="section #1"></t></h3><div id="ui-id-26" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="7"><t ref="-65" text="enim orci."></t><span classes="alink" ref="10" text="gravida."></span><t ref="-66" text="lorem. sed"></t><span classes="alink" ref="2" text="a"></span><t ref="-67" text="posuere magna vulputate"></t><t ref="-68" text="aenean. sed ut sed semper arcu"></t><t ref="-69" text="interdum"></t><span classes="alink" ref="1" text="congue"></span><span classes="alink" ref="11" text="hendrerit"></span><span classes="alink" ref="21" text="egestas"></span><t ref="-70" text="eleifend."></t></div><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="14"><t ref="-72" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
4
null
stop
click on the link "Ultrices". <body ref="19"><div id="wrap" ref="6"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="12"><h3 id="ui-id-25" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="17"><t ref="-118" text="section #1"></t></h3><h3 id="ui-id-27" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="4"><t ref="-119" text="section #2"></t></h3><div id="ui-id-28" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="9"><t ref="-120" text="ultricies pretium, ut eget"></t><span classes="alink" ref="16" text="nibh"></span><t ref="-121" text="elit"></t><span classes="alink" ref="5" text="rutrum"></span><span classes="alink" ref="13" text="sit"></span><t ref="-122" text="sed quam."></t><span classes="alink" ref="8" text="fringilla"></span><t ref="-123" text="at"></t><span classes="alink" ref="20" text="nibh."></span><t ref="-124" text="a. at vitae, lorem arcu"></t><t ref="-125" text="amet, dui."></t></div><h3 id="ui-id-29" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="14"><t ref="-126" text="section #3"></t></h3></div></div></body>,
click on the link "Ultrices".
click
14
null
stop
Expand the sections below <body ref="7"><div id="wrap" ref="16"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="11"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="12"><t ref="-69" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="17"><t ref="-70" text="ut augue. feugiat augue."></t><span classes="alink" ref="8" text="nulla"></span><t ref="-71" text="rhoncus"></t><span classes="alink" ref="2" text="urna"></span><t ref="-72" text="suspendisse"></t><t ref="-73" text="consequat,. nisl est feugiat."></t><t ref="-74" text="auctor ac amet"></t><span classes="alink" ref="5" text="tellus."></span><t ref="-75" text="rhoncus."></t><t ref="-76" text="laoreet. eget suspendisse."></t></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-77" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="6"><t ref="-78" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
1
null
stop
click on the link "facilisis". <body ref="7"><div id="wrap" ref="16"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="11"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-collapsed ui-corner-all" ref="12"><t ref="-124" text="section #1"></t></h3><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="1"><t ref="-125" text="section #2"></t></h3><div id="ui-id-16" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="3"><t ref="-126" text="convallis tellus sit"></t><span classes="alink" ref="10" text="egestas"></span><t ref="-127" text="aliquam,"></t><span classes="alink" ref="9" text="eget."></span><t ref="-128" text="urna ut. sed. a,"></t><t ref="-129" text="orci pellentesque."></t><span classes="alink" ref="14" text="mattis"></span><t ref="-130" text="in a."></t><t ref="-131" text="dictum sodales. praesent ut"></t><span classes="alink" ref="13" text="scelerisque."></span></div><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-132" text="section #3"></t></h3></div></div></body>,
click on the link "facilisis".
click
6
null
stop
Expand the sections below <body ref="18"><div id="wrap" ref="16"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="17"><t ref="-64" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="13"><t ref="-65" text="mollis tellus. praesent."></t><span classes="alink" ref="7" text="eget"></span><t ref="-66" text="ultrices viverra"></t><span classes="alink" ref="5" text="sed"></span><span classes="alink" ref="18" text="nunc."></span><t ref="-67" text="nunc"></t><t ref="-68" text="elementum urna, commodo"></t><span classes="alink" ref="16" text="nibh."></span><t ref="-69" text="diam vitae at. nunc."></t><span classes="alink" ref="8" text="elit"></span><t ref="-70" text="diam"></t><span classes="alink" ref="10" text="non."></span></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="15"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="11"><t ref="-72" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
15
null
stop
click on the link "egestas". <body ref="18"><div id="wrap" ref="16"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="8"><h3 id="ui-id-13" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="17"><t ref="-64" text="section #1"></t></h3><div id="ui-id-14" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="13"><t ref="-65" text="mollis tellus. praesent."></t><span classes="alink" ref="7" text="eget"></span><t ref="-66" text="ultrices viverra"></t><span classes="alink" ref="5" text="sed"></span><span classes="alink" ref="18" text="nunc."></span><t ref="-67" text="nunc"></t><t ref="-68" text="elementum urna, commodo"></t><span classes="alink" ref="16" text="nibh."></span><t ref="-69" text="diam vitae at. nunc."></t><span classes="alink" ref="8" text="elit"></span><t ref="-70" text="diam"></t><span classes="alink" ref="10" text="non."></span></div><h3 id="ui-id-15" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="15"><t ref="-71" text="section #2"></t></h3><h3 id="ui-id-17" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="11"><t ref="-72" text="section #3"></t></h3></div></div></body>,
click on the link "egestas".
click
15
null
stop
Expand the sections below <body ref="21"><div id="wrap" ref="20"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="5"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="9"><t ref="-74" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="3"><t ref="-75" text="mauris"></t><span classes="alink" ref="11" text="euismod"></span><t ref="-76" text="sollicitudin"></t><span classes="alink" ref="6" text="at"></span><span classes="alink" ref="13" text="sed"></span><t ref="-77" text="libero."></t><span classes="alink" ref="12" text="laoreet"></span><t ref="-78" text="et ultrices"></t><t ref="-79" text="tempus id"></t><span classes="alink" ref="15" text="diam"></span><span classes="alink" ref="18" text="dictum"></span><t ref="-80" text="augue."></t><t ref="-81" text="fringilla augue. pellentesque"></t><t ref="-82" text="fringilla nec aliquam."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="8"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="4"><t ref="-84" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
8
null
stop
click on the link "blandit". <body ref="21"><div id="wrap" ref="20"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="5"><h3 id="ui-id-19" classes="ui-accordion-header ui-corner-top ui-state-default ui-accordion-icons ui-accordion-header-active ui-state-active" ref="9"><t ref="-74" text="section #1"></t></h3><div id="ui-id-20" classes="ui-accordion-content ui-corner-bottom ui-helper-reset ui-widget-content ui-accordion-content-active" ref="3"><t ref="-75" text="mauris"></t><span classes="alink" ref="11" text="euismod"></span><t ref="-76" text="sollicitudin"></t><span classes="alink" ref="6" text="at"></span><span classes="alink" ref="13" text="sed"></span><t ref="-77" text="libero."></t><span classes="alink" ref="12" text="laoreet"></span><t ref="-78" text="et ultrices"></t><t ref="-79" text="tempus id"></t><span classes="alink" ref="15" text="diam"></span><span classes="alink" ref="18" text="dictum"></span><t ref="-80" text="augue."></t><t ref="-81" text="fringilla augue. pellentesque"></t><t ref="-82" text="fringilla nec aliquam."></t></div><h3 id="ui-id-21" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="8"><t ref="-83" text="section #2"></t></h3><h3 id="ui-id-23" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="4"><t ref="-84" text="section #3"></t></h3></div></div></body>,
click on the link "blandit".
click
8
null
stop
Expand the sections below <body ref="3"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-18" text="section #3"></t></h3></div></div></body>,
Expand the sections below
click
6
null
stop
click on the link "feugiat". <body ref="3"><div id="wrap" ref="2"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="4"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="6"><t ref="-16" text="section #1"></t></h3><h3 id="ui-id-3" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="5"><t ref="-17" text="section #2"></t></h3><h3 id="ui-id-5" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="1"><t ref="-18" text="section #3"></t></h3></div></div></body>,
click on the link "feugiat".
click
6
null
stop