{ // 获取包含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 !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO 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 !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; 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, 'PDF TO Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); , "},"instruction":{"kind":"string","value":"Select authentic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1701,"cells":{"history_episodes":{"kind":"string","value":" Select frank
, "},"instruction":{"kind":"string","value":"Select frank"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1702,"cells":{"history_episodes":{"kind":"string","value":" Select worldwide
, "},"instruction":{"kind":"string","value":"Select worldwide"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1703,"cells":{"history_episodes":{"kind":"string","value":" Select parachute
, "},"instruction":{"kind":"string","value":"Select parachute"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1704,"cells":{"history_episodes":{"kind":"string","value":" Select sunderland
, "},"instruction":{"kind":"string","value":"Select sunderland"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1705,"cells":{"history_episodes":{"kind":"string","value":" Select members
, "},"instruction":{"kind":"string","value":"Select members"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1706,"cells":{"history_episodes":{"kind":"string","value":" Select sears
, "},"instruction":{"kind":"string","value":"Select sears"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1707,"cells":{"history_episodes":{"kind":"string","value":" Select retreating
, "},"instruction":{"kind":"string","value":"Select retreating"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1708,"cells":{"history_episodes":{"kind":"string","value":" Select batsmen
, "},"instruction":{"kind":"string","value":"Select batsmen"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1709,"cells":{"history_episodes":{"kind":"string","value":" Select basically
, "},"instruction":{"kind":"string","value":"Select basically"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1710,"cells":{"history_episodes":{"kind":"string","value":" Select income
, "},"instruction":{"kind":"string","value":"Select income"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1711,"cells":{"history_episodes":{"kind":"string","value":" Select sega
, "},"instruction":{"kind":"string","value":"Select sega"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1712,"cells":{"history_episodes":{"kind":"string","value":" Select consecutive
, "},"instruction":{"kind":"string","value":"Select consecutive"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1713,"cells":{"history_episodes":{"kind":"string","value":" Select hovering
, "},"instruction":{"kind":"string","value":"Select hovering"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1714,"cells":{"history_episodes":{"kind":"string","value":" Select occasion
, "},"instruction":{"kind":"string","value":"Select occasion"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1715,"cells":{"history_episodes":{"kind":"string","value":" Select societies
, "},"instruction":{"kind":"string","value":"Select societies"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1716,"cells":{"history_episodes":{"kind":"string","value":" Select recognition
, "},"instruction":{"kind":"string","value":"Select recognition"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1717,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 11/17/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 11/17/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2017-11-17"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1718,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 05/03/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 05/03/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2017-05-03"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1719,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 09/05/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 09/05/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2012-09-05"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1720,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 09/30/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 09/30/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2012-09-30"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1721,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 11/24/2013 as the date
, "},"instruction":{"kind":"string","value":"Enter 11/24/2013 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2013-11-24"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1722,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 01/28/2011 as the date
, "},"instruction":{"kind":"string","value":"Enter 01/28/2011 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2011-01-28"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1723,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter 08/27/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 08/27/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"2012-08-27"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1724,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter 12/11/2019 as the date
, "},"instruction":{"kind":"string","value":"Enter 12/11/2019 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"2019-12-11"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1725,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 11/07/2010 as the date
, "},"instruction":{"kind":"string","value":"Enter 11/07/2010 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2010-11-07"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1726,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 03/16/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 03/16/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2017-03-16"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1727,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter 09/16/2014 as the date
, "},"instruction":{"kind":"string","value":"Enter 09/16/2014 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"2014-09-16"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1728,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 04/30/2011 as the date
, "},"instruction":{"kind":"string","value":"Enter 04/30/2011 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2011-04-30"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1729,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 07/28/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 07/28/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"2012-07-28"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1730,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1731,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 02/25/2013 as the date
, "},"instruction":{"kind":"string","value":"Enter 02/25/2013 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2013-02-25"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1732,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 01/03/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 01/03/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2012-01-03"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1733,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 10/06/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/06/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"2017-10-06"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1734,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 08/28/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 08/28/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2017-08-28"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1735,"cells":{"history_episodes":{"kind":"string","value":" Enter 06/15/2016 as the date
, "},"instruction":{"kind":"string","value":"Enter 06/15/2016 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2016-06-15"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1736,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 06/10/2017 as the date
, "},"instruction":{"kind":"string","value":"Enter 06/10/2017 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2017-06-10"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1737,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter 09/23/2011 as the date
, "},"instruction":{"kind":"string","value":"Enter 09/23/2011 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"2011-09-23"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1738,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 09/23/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 09/23/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"2012-09-23"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1739,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 01/26/2010 as the date
, "},"instruction":{"kind":"string","value":"Enter 01/26/2010 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2010-01-26"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1740,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 08/26/2015 as the date
, "},"instruction":{"kind":"string","value":"Enter 08/26/2015 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"2015-08-26"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1741,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1742,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 10/13/2012 as the date
, "},"instruction":{"kind":"string","value":"Enter 10/13/2012 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"2012-10-13"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1743,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 03/04/2014 as the date
, "},"instruction":{"kind":"string","value":"Enter 03/04/2014 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"2014-03-04"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1744,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 12/15/2018 as the date
, "},"instruction":{"kind":"string","value":"Enter 12/15/2018 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"2018-12-15"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1745,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 05/21/2010 as the date
, "},"instruction":{"kind":"string","value":"Enter 05/21/2010 as the date"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"2010-05-21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1746,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1747,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1748,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below



, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1749,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1750,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1751,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1752,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1753,"cells":{"history_episodes":{"kind":"string","value":" Expand the section below

, "},"instruction":{"kind":"string","value":"Expand the section below"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1754,"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":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1755,"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":1756,"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":19,"string":"19"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1757,"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":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1758,"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":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1759,"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":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1760,"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":1761,"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":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1762,"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":1763,"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":1764,"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":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1765,"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":1766,"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":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1767,"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":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1768,"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":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1769,"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":18,"string":"18"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1770,"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":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1771,"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":1772,"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":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1773,"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":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1774,"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":"continue"}}},{"rowIdx":1775,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} 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":21,"string":"21"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1776,"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":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1777,"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":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1778,"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":1779,"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":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1780,"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":22,"string":"22"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1781,"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":23,"string":"23"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1782,"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":1783,"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":1784,"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":1785,"cells":{"history_episodes":{"kind":"string","value":" Close the dialog box by clicking the \"x\".

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

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

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

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

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

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

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

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

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

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

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

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

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

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

"},"instruction":{"kind":"string","value":"Close the dialog box by clicking the \"x\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":17,"numItemsPerPage":100,"numTotalItems":40186,"offset":1700,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODM0NzA4NCwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MzUwNjg0LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.gvi0TZwt9KnjVeHOak1Bpy9hgC2f8fGNrfL4E-25iKZvlkvnoqFMB2kn8PK1FdvEtW8vQipnB2pVdnOJIMSbBw","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Select authentic <body ref="1"><form id="mturk_form" ref="13"><div id="wrap" ref="5"><div id="area" ref="12"><div id="boxes" ref="2"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-61" text="mushroom"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-62" text="authentic"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-63" text="frank"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-64" text="neglect"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></form></body>,
Select authentic
click
11
null
stop
Select frank <body ref="1"><form id="mturk_form" ref="13"><div id="wrap" ref="5"><div id="area" ref="12"><div id="boxes" ref="2"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-93" text="mushroom"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-94" text="authentic"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-95" text="frank"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-96" text="neglect"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></form></body>,
Select frank
click
14
null
stop
Select worldwide <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="7"><label ref="1"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-26" text="worldwide"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-27" text="hooked"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-28" text="1937"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-29" text="parachute"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-30" text="sunderland"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></form></body>,
Select worldwide
click
8
null
stop
Select parachute <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="7"><label ref="1"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-56" text="worldwide"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-57" text="hooked"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-58" text="1937"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-59" text="parachute"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-60" text="sunderland"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></form></body>,
Select parachute
click
9
null
stop
Select sunderland <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="7"><label ref="1"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-86" text="worldwide"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-87" text="hooked"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-88" text="1937"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-89" text="parachute"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="16" value="true"></input><t ref="-90" text="sunderland"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></form></body>,
Select sunderland
click
16
null
stop
Select members <body ref="8"><form id="mturk_form" ref="7"><div id="wrap" ref="1"><div id="area" ref="2"><div id="boxes" ref="5"><label ref="6"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-15" text="misdemeanor"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-16" text="members"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></form></body>,
Select members
click
3
null
stop
Select sears <body ref="12"><form id="mturk_form" ref="6"><div id="wrap" ref="8"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="1"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-16" text="robin"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-17" text="recreation"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-18" text="sears"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></form></body>,
Select sears
click
7
null
stop
Select retreating <body ref="11"><form id="mturk_form" ref="13"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-21" text="thought"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-22" text="retreating"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-23" text="batsmen"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-24" text="backgrounds"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select retreating
click
10
null
stop
Select batsmen <body ref="11"><form id="mturk_form" ref="13"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-45" text="thought"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-46" text="retreating"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="9" value="true"></input><t ref="-47" text="batsmen"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-48" text="backgrounds"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select batsmen
click
9
null
stop
Select basically <body ref="8"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-43" text="basically"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-44" text="salvation"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-45" text="arbitration"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-46" text="income"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-47" text="attract"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-48" text="sega"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select basically
click
5
null
stop
Select income <body ref="8"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-91" text="basically"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-92" text="salvation"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-93" text="arbitration"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-94" text="income"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-95" text="attract"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-96" text="sega"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select income
click
4
null
stop
Select sega <body ref="8"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-139" text="basically"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-140" text="salvation"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-141" text="arbitration"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-142" text="income"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-143" text="attract"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-144" text="sega"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select sega
click
2
null
stop
Select consecutive <body ref="6"><div ref="7"><input_button id="chreloadframe" ref="3" value="reload"></input_button></div><form id="mturk_form" ref="11"><div id="wrap" ref="10"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-56" text="consecutive"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-57" text="taps"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-58" text="hovering"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-59" text="martha"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-60" text="adversaries"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></form></body>,
Select consecutive
click
12
null
stop
Select hovering <body ref="6"><div ref="7"><input_button id="chreloadframe" ref="3" value="reload"></input_button></div><form id="mturk_form" ref="11"><div id="wrap" ref="10"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-86" text="consecutive"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-87" text="taps"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-88" text="hovering"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-89" text="martha"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-90" text="adversaries"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></form></body>,
Select hovering
click
7
null
stop
Select occasion <body ref="9"><form id="mturk_form" ref="7"><div id="wrap" ref="2"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="5"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-21" text="culinary"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-22" text="occasion"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-23" text="danger"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-24" text="meteorological"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></form></body>,
Select occasion
click
8
null
stop
Select societies <body ref="10"><form id="mturk_form" ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="1"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-15" text="societies"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-16" text="recognition"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></form></body>,
Select societies
click
8
null
stop
Select recognition <body ref="10"><form id="mturk_form" ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="1"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-31" text="societies"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-32" text="recognition"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></form></body>,
Select recognition
click
9
null
stop
{click,6,} Enter 11/17/2017 as the date <body ref="5"><form id="mturk_form" ref="1"><div id="wrap" ref="7"><div id="area" ref="2"><div id="form" ref="4"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 11/17/2017 as the date
keydown
6
2017-11-17
stop
{click,2,} Enter 05/03/2017 as the date <body ref="5"><form id="mturk_form" ref="6"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="4"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 05/03/2017 as the date
keydown
2
2017-05-03
stop
{click,1,} Enter 09/05/2012 as the date <body ref="6"><form id="mturk_form" ref="7"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="4"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 09/05/2012 as the date
keydown
1
2012-09-05
stop
{click,3,} Enter 09/30/2012 as the date <body ref="7"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="2"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter 09/30/2012 as the date
keydown
3
2012-09-30
stop
{click,2,} Enter 11/24/2013 as the date <body ref="4"><form id="mturk_form" ref="6"><div id="wrap" ref="1"><div id="area" ref="7"><div id="form" ref="5"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 11/24/2013 as the date
keydown
2
2013-11-24
stop
{click,6,} Enter 01/28/2011 as the date <body ref="4"><form id="mturk_form" ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="7"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter 01/28/2011 as the date
keydown
6
2011-01-28
stop
{click,7,} Enter 08/27/2012 as the date <body ref="4"><form id="mturk_form" ref="6"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="3"><input_date id="tt" ref="7"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter 08/27/2012 as the date
keydown
7
2012-08-27
stop
{click,7,} Enter 12/11/2019 as the date <body ref="1"><form id="mturk_form" ref="4"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="2"><input_date id="tt" ref="7"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 12/11/2019 as the date
keydown
7
2019-12-11
stop
{click,5,} Enter 11/07/2010 as the date <body ref="2"><form id="mturk_form" ref="6"><div id="wrap" ref="1"><div id="area" ref="3"><div id="form" ref="4"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 11/07/2010 as the date
keydown
5
2010-11-07
stop
{click,1,} Enter 03/16/2017 as the date <body ref="2"><form id="mturk_form" ref="7"><div id="wrap" ref="6"><div id="area" ref="3"><div id="form" ref="4"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter 03/16/2017 as the date
keydown
1
2017-03-16
stop
{click,7,} Enter 09/16/2014 as the date <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="5"><input_date id="tt" ref="7"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter 09/16/2014 as the date
keydown
7
2014-09-16
stop
{click,6,} Enter 04/30/2011 as the date <body ref="1"><form id="mturk_form" ref="3"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="7"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></form></body>,
Enter 04/30/2011 as the date
keydown
6
2011-04-30
stop
{click,4,} Enter 07/28/2012 as the date <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><div id="form" ref="7"><input_date id="tt" ref="4"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter 07/28/2012 as the date
keydown
4
2012-07-28
stop
click submit <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><div id="form" ref="7"><input_date id="tt" ref="4" value="2012-07-28"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>
click submit
click
6
null
stop
{click,6,} Enter 02/25/2013 as the date <body ref="4"><form id="mturk_form" ref="5"><div id="wrap" ref="3"><div id="area" ref="2"><div id="form" ref="1"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 02/25/2013 as the date
keydown
6
2013-02-25
stop
{click,5,} Enter 01/03/2012 as the date <body ref="7"><form id="mturk_form" ref="1"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="2"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter 01/03/2012 as the date
keydown
5
2012-01-03
stop
{click,1,} Enter 10/06/2017 as the date <body ref="2"><form id="mturk_form" ref="4"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="3"><input_date id="tt" ref="1"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 10/06/2017 as the date
keydown
1
2017-10-06
stop
{click,3,} Enter 08/28/2017 as the date <body ref="2"><form id="mturk_form" ref="5"><div id="wrap" ref="6"><div id="area" ref="4"><div id="form" ref="1"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 08/28/2017 as the date
keydown
3
2017-08-28
stop
Enter 06/15/2016 as the date <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="2"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter 06/15/2016 as the date
keydown
5
2016-06-15
stop
{click,3,} Enter 06/10/2017 as the date <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="5"><div id="area" ref="4"><div id="form" ref="7"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter 06/10/2017 as the date
keydown
3
2017-06-10
stop
{click,7,} Enter 09/23/2011 as the date <body ref="6"><form id="mturk_form" ref="4"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="1"><input_date id="tt" ref="7"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 09/23/2011 as the date
keydown
7
2011-09-23
stop
{click,4,} Enter 09/23/2012 as the date <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="3"><input_date id="tt" ref="4"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 09/23/2012 as the date
keydown
4
2012-09-23
stop
{click,6,} Enter 01/26/2010 as the date <body ref="5"><form id="mturk_form" ref="2"><div id="wrap" ref="3"><div id="area" ref="1"><div id="form" ref="4"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></div></form></body>,
Enter 01/26/2010 as the date
keydown
6
2010-01-26
stop
{click,5,} Enter 08/26/2015 as the date <body ref="3"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="6"><input_date id="tt" ref="5"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter 08/26/2015 as the date
keydown
5
2015-08-26
stop
click submit <body ref="3"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="6"><input_date id="tt" ref="5" value="2015-08-26"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>
click submit
click
2
null
stop
{click,2,} Enter 10/13/2012 as the date <body ref="1"><form id="mturk_form" ref="7"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="5"><input_date id="tt" ref="2"></input_date><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter 10/13/2012 as the date
keydown
2
2012-10-13
stop
{click,3,} Enter 03/04/2014 as the date <body ref="7"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="6"><input_date id="tt" ref="3"></input_date><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter 03/04/2014 as the date
keydown
3
2014-03-04
stop
{click,6,} Enter 12/15/2018 as the date <body ref="2"><form id="mturk_form" ref="7"><div id="wrap" ref="5"><div id="area" ref="3"><div id="form" ref="4"><input_date id="tt" ref="6"></input_date><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter 12/15/2018 as the date
keydown
6
2018-12-15
stop
{click,4,} Enter 05/21/2010 as the date <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="3"><div id="form" ref="1"><input_date id="tt" ref="4"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter 05/21/2010 as the date
keydown
4
2010-05-21
stop
click submit <body ref="7"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="3"><div id="form" ref="1"><input_date id="tt" ref="4" value="2010-05-21"></input_date><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>
click submit
click
5
null
stop
Expand the section below <body ref="6"><form id="mturk_form" ref="7"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="2"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="1"><t ref="-8" text="section #34"></t></h3><p 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="8"><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
1
null
stop
Expand the section below <body ref="7"><form id="mturk_form" ref="5"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="9"><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="4"><t ref="-6" text="section #15"></t></h3><p id="ui-id-9" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons" ref="2"><br ref="6"></br><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
4
null
stop
Expand the section below <body ref="2"><form id="mturk_form" ref="5"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="7"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-6" text="section #6"></t></h3><p 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="6"><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
4
null
stop
Expand the section below <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="3"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="6"><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="8"><t ref="-6" text="section #39"></t></h3><p 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="4"><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
8
null
stop
Expand the section below <body ref="2"><form id="mturk_form" ref="6"><div id="wrap" ref="8"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="7"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="3"><t ref="-6" text="section #16"></t></h3><p 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="4"><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
3
null
stop
Expand the section below <body ref="3"><form id="mturk_form" ref="8"><div id="wrap" ref="7"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="1"><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="5"><t ref="-6" text="section #26"></t></h3><p 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="4"><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
5
null
stop
Expand the section below <body ref="7"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" classes="ui-accordion ui-widget ui-helper-reset" ref="5"><h3 id="ui-id-1" classes="ui-accordion-header ui-corner-top ui-accordion-header-collapsed ui-corner-all ui-state-default ui-accordion-icons ui-state-hover ui-state-focus" ref="4"><t ref="-6" text="section #9"></t></h3><p 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="8"><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></p></div></div></form></body>,
Expand the section below
click
4
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="16"><form id="mturk_form" ref="14"><div id="wrap" ref="11"><div id="area" ref="6"></div></div></form><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="17"><span id="ui-id-2" 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="8"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="15" text="alvin privacy depressing. bumped toshiba."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="21"><div classes="ui-dialog-buttonset" ref="20"><button classes="ui-button ui-corner-all ui-widget" ref="1" 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="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="19"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></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="23"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="22"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
1
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="8"><form id="mturk_form" ref="19"><div id="wrap" ref="6"><div id="area" ref="12"></div></div></form><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="23"><span id="ui-id-4" 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="3"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="10"><p ref="16" text="resorted. started focuses recreation."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="11"><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="1" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="9"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="21"></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="20"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="22"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="2"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
15
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="2"><form id="mturk_form" ref="20"><div id="wrap" ref="7"><div id="area" ref="4"></div></div></form><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="21"><span id="ui-id-3" 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="6"><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="12"><p ref="10" text="comedian tours conversations denver expelled."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="11"><div classes="ui-dialog-buttonset" ref="22"><button classes="ui-button ui-corner-all ui-widget" ref="19" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="23" 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="16"></div><div classes="ui-resizable-handle ui-resizable-s" ref="14"></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="18"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="1"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="15"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
19
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="22"><form id="mturk_form" ref="3"><div id="wrap" ref="8"><div id="area" ref="13"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="12"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="2"><span id="ui-id-2" classes="ui-dialog-title" ref="10"></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="5"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="14" text="responding armey grace proximity relegated."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="11"><div classes="ui-dialog-buttonset" ref="20"><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="6"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></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="23"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="15"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
9
null
stop
Click the button in the dialog box labeled "OK". <body ref="10"><form id="mturk_form" ref="12"><div id="wrap" ref="6"><div id="area" ref="19"></div></div></form><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="4"><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="7"><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="1"><p ref="15" text="privacy newspaper 212 discharged. referees."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="14"><button classes="ui-button ui-corner-all ui-widget" ref="2" 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="23"></div><div classes="ui-resizable-handle ui-resizable-e" ref="20"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></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="22"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Click the button in the dialog box labeled "OK".
click
17
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="14"><form id="mturk_form" ref="2"><div id="wrap" ref="3"><div id="area" ref="15"></div></div></form><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="6"><span id="ui-id-1" classes="ui-dialog-title" ref="18"></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="23"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="9" text="peter carved alexandra belmont experiments fearing. tariff."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="12"><button classes="ui-button ui-corner-all ui-widget" ref="11" 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="17"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></div><div classes="ui-resizable-handle ui-resizable-w" ref="1"></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="21"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="19"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
11
null
stop
Click the button in the dialog box labeled "OK". <body ref="14"><form id="mturk_form" ref="19"><div id="wrap" ref="23"><div id="area" ref="20"></div></div></form><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="4"><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="15"><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="18"><p ref="3" text="panels inception embraced elena rescheduled 84 recep."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="17"><div classes="ui-dialog-buttonset" ref="6"><button classes="ui-button ui-corner-all ui-widget" ref="9" 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="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="21"></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="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="12"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="22"></div></div></body>
Click the button in the dialog box labeled "OK".
click
10
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="9"><form id="mturk_form" ref="5"><div id="wrap" ref="12"><div id="area" ref="20"></div></div></form><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="19"><span id="ui-id-4" classes="ui-dialog-title" ref="8"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="10"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="22"><p ref="6" text="anywhere. celebration spontaneous. nashville."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="1"><div classes="ui-dialog-buttonset" ref="15"><button classes="ui-button ui-corner-all ui-widget" ref="17" 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="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></div><div classes="ui-resizable-handle ui-resizable-w" ref="23"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="7"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="21"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
17
null
stop
Click the button in the dialog box labeled "OK". <body ref="6"><form id="mturk_form" ref="17"><div id="wrap" ref="9"><div id="area" ref="11"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="21"><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="3"></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="12"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="14"><p ref="2" text="mosquito. goran exporting delivering. indians themes. adding."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="19"><div classes="ui-dialog-buttonset" ref="23"><button classes="ui-button ui-corner-all ui-widget" ref="13" 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="16"></div><div classes="ui-resizable-handle ui-resizable-e" ref="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="22"></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="20"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="10"></div></div></body>
Click the button in the dialog box labeled "OK".
click
4
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="6"><form id="mturk_form" ref="13"><div id="wrap" ref="22"><div id="area" ref="19"></div></div></form><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="9"><span id="ui-id-3" classes="ui-dialog-title" ref="4"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="1"><p ref="2" text="by. freed nec. starts fixture."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="11"><div classes="ui-dialog-buttonset" ref="3"><button classes="ui-button ui-corner-all ui-widget" ref="10" 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="14"></div><div classes="ui-resizable-handle ui-resizable-e" ref="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="20"></div><div classes="ui-resizable-handle ui-resizable-w" ref="23"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="7"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="12"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="21"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
10
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="11"><div ref="17"><input_button id="chreloadframe" ref="25" value="reload"></input_button></div><form id="mturk_form" ref="19"><div id="wrap" ref="24"><div id="area" ref="12"></div></div></form><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="16"><span id="ui-id-3" classes="ui-dialog-title" ref="7"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="14"><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="8"><p ref="3" text="cite euro3. adding. clash."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="13"><div classes="ui-dialog-buttonset" ref="21"><button classes="ui-button ui-corner-all ui-widget" ref="5" 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="4"></div><div classes="ui-resizable-handle ui-resizable-e" ref="22"></div><div classes="ui-resizable-handle ui-resizable-s" ref="20"></div><div classes="ui-resizable-handle ui-resizable-w" ref="23"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="6"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
5
null
stop
Click the button in the dialog box labeled "x". <body ref="3"><form id="mturk_form" ref="23"><div id="wrap" ref="14"><div id="area" ref="10"></div></div></form><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="22"><span id="ui-id-3" 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="19"><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="1"><p ref="16" text="downgrade. erupted. motorists khodorkovsky theological beneficiaries."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="5"><div classes="ui-dialog-buttonset" ref="15"><button classes="ui-button ui-corner-all ui-widget" ref="12" 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="8"></div><div classes="ui-resizable-handle ui-resizable-e" ref="21"></div><div classes="ui-resizable-handle ui-resizable-s" ref="13"></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="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="20"></div></div></body>
Click the button in the dialog box labeled "x".
click
19
null
stop
Click the button in the dialog box labeled "x". <body ref="7"><div ref="18"><input_button id="chreloadframe" ref="19" value="reload"></input_button></div><form id="mturk_form" ref="21"><div id="wrap" ref="20"><div id="area" ref="12"></div></div></form><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="8"><span id="ui-id-2" 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="4"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="23"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="6"><p ref="22" text="motorway warring combined laundry bankruptcy sacking by."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="2"><div classes="ui-dialog-buttonset" ref="11"><button classes="ui-button ui-corner-all ui-widget" ref="25" 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="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="24"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></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="15"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="10"></div></div></body>
Click the button in the dialog box labeled "x".
click
4
null
stop
Click the button in the dialog box labeled "x". <body ref="13"><form id="mturk_form" ref="17"><div id="wrap" ref="11"><div id="area" ref="19"></div></div></form><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="7"><span id="ui-id-3" 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="9"><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="15"><p ref="12" text="airports destination interested favorite commodity."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="10"><button classes="ui-button ui-corner-all ui-widget" ref="16" 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="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="20"></div><div classes="ui-resizable-handle ui-resizable-s" ref="23"></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="3"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="22"></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
9
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="22"><form id="mturk_form" ref="16"><div id="wrap" ref="8"><div id="area" ref="4"></div></div></form><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="13"><span id="ui-id-2" classes="ui-dialog-title" ref="7"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="20"><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="17"><p ref="11" text="110 drinks. archaeologist postage reprisals."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="14"><div classes="ui-dialog-buttonset" ref="6"><button classes="ui-button ui-corner-all ui-widget" ref="5" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="23" 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="15"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></div><div classes="ui-resizable-handle ui-resizable-w" ref="1"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="19"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
5
null
stop
Click the button in the dialog box labeled "OK". <body ref="16"><form id="mturk_form" ref="20"><div id="wrap" ref="4"><div id="area" ref="1"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="12"><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="14"></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="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="6" text="premiership hahn after spontaneous claimed misdemeanor."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="17"><button classes="ui-button ui-corner-all ui-widget" ref="5" 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="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="21"></div><div classes="ui-resizable-handle ui-resizable-s" ref="22"></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="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="23"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="15"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Click the button in the dialog box labeled "OK".
click
18
null
stop
Click the button in the dialog box labeled "OK". <body ref="16"><form id="mturk_form" ref="23"><div id="wrap" ref="2"><div id="area" ref="3"></div></div></form><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="4"><span id="ui-id-1" 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="20"><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="10"><p ref="5" text="ellison post-war ranks. inviting."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="12"><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="14" 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="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="19"></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="21"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Click the button in the dialog box labeled "OK".
click
14
null
stop
Click the button in the dialog box labeled "x". <body ref="7"><form id="mturk_form" ref="18"><div id="wrap" ref="20"><div id="area" ref="12"></div></div></form><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="21"><span id="ui-id-3" classes="ui-dialog-title" ref="22"></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="11"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="4" text="attract transparency. saint erupted plummer."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="6"><div classes="ui-dialog-buttonset" ref="13"><button classes="ui-button ui-corner-all ui-widget" ref="8" 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="15"></div><div classes="ui-resizable-handle ui-resizable-e" ref="23"></div><div classes="ui-resizable-handle ui-resizable-s" ref="10"></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="5"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="2"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="16"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="3"></div></div></body>
Click the button in the dialog box labeled "x".
click
19
null
stop
Click the button in the dialog box labeled "x". <body ref="17"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="22"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="23"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><span id="ui-id-2" classes="ui-dialog-title" ref="10"></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="19"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="15"><p ref="3" text="provoked 1958. hovering screw hammer chips nihon."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="16"><div classes="ui-dialog-buttonset" ref="5"><button classes="ui-button ui-corner-all ui-widget" ref="8" 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="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="7"></div><div classes="ui-resizable-handle ui-resizable-s" ref="1"></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="18"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="13"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="9"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="20"></div></div></body>
Click the button in the dialog box labeled "x".
click
11
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="1"><form id="mturk_form" ref="14"><div id="wrap" ref="20"><div id="area" ref="12"></div></div></form><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="8"><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="22"><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="10"><p ref="21" text="marion. qaeda resembled mori luxembourg."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="9"><div classes="ui-dialog-buttonset" ref="7"><button classes="ui-button ui-corner-all ui-widget" ref="16" 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="23"></div><div classes="ui-resizable-handle ui-resizable-e" ref="5"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></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="17"></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="13"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
16
null
stop
Click the button in the dialog box labeled "x". <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="22"><div id="area" ref="17"></div></div></form><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="16"><span id="ui-id-1" 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="21"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="19"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="2" text="exiles outraged. detect 1,300 scores forehead spies."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="3"><div classes="ui-dialog-buttonset" ref="18"><button classes="ui-button ui-corner-all ui-widget" ref="13" 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="23"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></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="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="20"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>,
Click the button in the dialog box labeled "x".
click
8
null
continue
{click,8,} Click the button in the dialog box labeled "x". <body ref="1"><form id="mturk_form" ref="6"><div id="wrap" ref="22"><div id="area" ref="17"></div></div></form><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="16"><span id="ui-id-1" 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="21"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="19"></span><t ref="-14" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="2" text="exiles outraged. detect 1,300 scores forehead spies."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="3"><div classes="ui-dialog-buttonset" ref="18"><button classes="ui-button ui-corner-all ui-widget" ref="13" 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="23"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></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="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="20"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Click the button in the dialog box labeled "x".
click
21
null
stop
Click the button in the dialog box labeled "x". <body ref="10"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="5"></div></div></form><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="11"><span id="ui-id-1" classes="ui-dialog-title" ref="22"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="6"><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="1"><p ref="15" text="mackay appointment. expelled countrymen mortgage skinny."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="4"><div classes="ui-dialog-buttonset" ref="21"><button classes="ui-button ui-corner-all ui-widget" ref="23" 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="20"></div><div classes="ui-resizable-handle ui-resizable-e" ref="19"></div><div classes="ui-resizable-handle ui-resizable-s" ref="9"></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="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="2"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="13"></div></div></body>
Click the button in the dialog box labeled "x".
click
6
null
stop
Click the button in the dialog box labeled "x". <body ref="21"><form id="mturk_form" ref="4"><div id="wrap" ref="12"><div id="area" ref="3"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="17"><span id="ui-id-2" classes="ui-dialog-title" ref="10"></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="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="7"><p ref="16" text="ducks. cecil. looks dump patriarch."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="8"><div classes="ui-dialog-buttonset" ref="2"><button classes="ui-button ui-corner-all ui-widget" ref="20" 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="18"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></div><div classes="ui-resizable-handle ui-resizable-s" ref="1"></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="5"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="23"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Click the button in the dialog box labeled "x".
click
11
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="11"><form id="mturk_form" ref="14"><div id="wrap" ref="4"><div id="area" ref="17"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-dialog-buttons ui-draggable ui-resizable" ref="15"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="9"><span id="ui-id-3" classes="ui-dialog-title" ref="10"></span><button classes="ui-button ui-corner-all ui-widget ui-button-icon-only ui-dialog-titlebar-close" ref="6"><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="5"><p ref="1" text="ellen karen. planetary suspending oilers. conversations sponsoring."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="12"><div classes="ui-dialog-buttonset" ref="3"><button classes="ui-button ui-corner-all ui-widget" ref="8" 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="2"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="20"></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="21"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="18"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="23"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="7"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
8
null
stop
Click the button in the dialog box labeled "OK". <body ref="17"><form id="mturk_form" ref="4"><div id="wrap" ref="16"><div id="area" ref="6"></div></div></form><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="3"><span id="ui-id-2" classes="ui-dialog-title" ref="22"></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="14"></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="situation celebration. 350 plenty."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="15"><div classes="ui-dialog-buttonset" ref="5"><button classes="ui-button ui-corner-all ui-widget" ref="20" 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="21"></div><div classes="ui-resizable-handle ui-resizable-e" ref="11"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></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="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="23"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "OK".
click
9
null
stop
Click the button in the dialog box labeled "OK". <body ref="16"><form id="mturk_form" ref="3"><div id="wrap" ref="5"><div id="area" ref="13"></div></div></form><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="4"><span id="ui-id-1" 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="9"><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="19"><p ref="6" text="barriers. privacy ton cecil enhancing."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="17"><div classes="ui-dialog-buttonset" ref="1"><button classes="ui-button ui-corner-all ui-widget" ref="10" 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="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="23"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></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="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="20"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="12"></div></div></body>
Click the button in the dialog box labeled "OK".
click
22
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="3"><form id="mturk_form" ref="2"><div id="wrap" ref="22"><div id="area" ref="10"></div></div></form><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="15"><span id="ui-id-1" 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="18"><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="7"><p ref="19" text="samsung litvinenko. completes. recruits sherman. pigs. fighter."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="11"><div classes="ui-dialog-buttonset" ref="14"><button classes="ui-button ui-corner-all ui-widget" ref="23" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="20" 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="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="13"></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="21"></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="9"></div></div></body>
Click the button in the dialog box labeled "Cancel".
click
23
null
stop
Click the button in the dialog box labeled "Cancel". <body ref="5"><form id="mturk_form" ref="15"><div id="wrap" ref="3"><div id="area" ref="9"></div></div></form><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="2"><span id="ui-id-3" 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="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="17"><p ref="6" text="heats vega wto exclusive."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="14"><div classes="ui-dialog-buttonset" ref="16"><button classes="ui-button ui-corner-all ui-widget" ref="8" text="cancel"></button><button classes="ui-button ui-corner-all ui-widget" ref="20" text="ok"></button></div></div><div classes="ui-resizable-handle ui-resizable-n" ref="21"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></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="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="23"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="22"></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="16"><form id="mturk_form" ref="19"><div id="wrap" ref="13"><div id="area" ref="9"></div></div></form><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="22"><span id="ui-id-1" 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="15"><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="18"><p ref="14" text="replay reflects pak protracted sheikh."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="23"><div classes="ui-dialog-buttonset" ref="10"><button classes="ui-button ui-corner-all ui-widget" ref="12" 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="6"></div><div classes="ui-resizable-handle ui-resizable-e" ref="1"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></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="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="17"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="21"></div></div></body>
Click the button in the dialog box labeled "x".
click
15
null
stop
Click the button in the dialog box labeled "x". <body ref="22"><div ref="4"><input_button id="chreloadframe" ref="2" value="reload"></input_button></div><form id="mturk_form" ref="19"><div id="wrap" ref="8"><div id="area" ref="20"></div></div></form><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="16"><span id="ui-id-1" classes="ui-dialog-title" ref="18"></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="15"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="17"><p ref="21" text="powerless finest secrets unconstitutional missouri."></p></div><div classes="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" ref="3"><div classes="ui-dialog-buttonset" ref="11"><button classes="ui-button ui-corner-all ui-widget" ref="23" 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="6"></div><div classes="ui-resizable-handle ui-resizable-e" ref="10"></div><div classes="ui-resizable-handle ui-resizable-s" ref="24"></div><div classes="ui-resizable-handle ui-resizable-w" ref="25"></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="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Click the button in the dialog box labeled "x".
click
12
null
stop
Close the dialog box by clicking the "x". <body ref="9"><form id="mturk_form" ref="15"><div id="wrap" ref="2"><div id="area" ref="6"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="18"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="1"><span id="ui-id-3" classes="ui-dialog-title" ref="10"></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="3"><p ref="12" text="questionable neglect pigs az dump sliding miguel."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="11"></div><div classes="ui-resizable-handle ui-resizable-e" ref="14"></div><div classes="ui-resizable-handle ui-resizable-s" ref="17"></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="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="5"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="16"></div></div></body>
Close the dialog box by clicking the "x".
click
7
null
stop
Close the dialog box by clicking the "x". <body ref="15"><form id="mturk_form" ref="3"><div id="wrap" ref="7"><div id="area" ref="12"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="5"><span id="ui-id-2" classes="ui-dialog-title" ref="16"></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="19"></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="3-1 newport. first. stole published combined chretien."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></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="17"></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="4"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="11"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Close the dialog box by clicking the "x".
click
8
null
stop
Close the dialog box by clicking the "x". <body ref="3"><form id="mturk_form" ref="17"><div id="wrap" ref="9"><div id="area" ref="1"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="18"><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="6"></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="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="5"><p ref="15" text="postage geopolitical counselors atoms totaling. boutros tajikistan."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="19"></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="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="10"></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>
Close the dialog box by clicking the "x".
click
16
null
stop
Close the dialog box by clicking the "x". <body ref="16"><form id="mturk_form" ref="10"><div id="wrap" ref="7"><div id="area" ref="19"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="6"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="4"><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="2"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="17"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="1"><p ref="18" text="spends teens deciding buccaneers."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="12"></div><div classes="ui-resizable-handle ui-resizable-e" ref="8"></div><div classes="ui-resizable-handle ui-resizable-s" ref="5"></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="9"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="14"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="13"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="11"></div></div></body>
Close the dialog box by clicking the "x".
click
2
null
stop
Close the dialog box by clicking the "x". <body ref="6"><form id="mturk_form" ref="3"><div id="wrap" ref="12"><div id="area" ref="2"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="11"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="14"><span id="ui-id-1" 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="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="5"><p ref="10" text="poker sniper. chechens sleeve evacuated eduard."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="19"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="4"></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="17"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="16"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="7"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Close the dialog box by clicking the "x".
click
8
null
stop
Close the dialog box by clicking the "x". <body ref="13"><form id="mturk_form" ref="11"><div id="wrap" ref="10"><div id="area" ref="18"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="8"><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="14"></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="2"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="15"><p ref="17" text="pigs upright buccaneers ernesto goran 44th conservation."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="5"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="19"></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="9"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="4"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="1"></div></div></body>
Close the dialog box by clicking the "x".
click
12
null
stop
Close the dialog box by clicking the "x". <body ref="14"><form id="mturk_form" ref="11"><div id="wrap" ref="12"><div id="area" ref="5"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="9"><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="18"></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="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="1"><p ref="16" text="mountain pull thought litvinenko rife."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="3"></div><div classes="ui-resizable-handle ui-resizable-e" ref="19"></div><div classes="ui-resizable-handle ui-resizable-s" ref="2"></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="4"></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="15"></div></div></body>
Close the dialog box by clicking the "x".
click
8
null
stop
Close the dialog box by clicking the "x". <body ref="12"><form id="mturk_form" ref="13"><div id="wrap" ref="18"><div id="area" ref="5"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="3"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="11"><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="16"><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="4"><p ref="7" text="prefer factor tyre backgrounds."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="9"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></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="8"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="17"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="1"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Close the dialog box by clicking the "x".
click
16
null
stop
Close the dialog box by clicking the "x". <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="1"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="2"><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="13"></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="6"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="18"><p ref="19" text="pension fighter unhappy slogans."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="9"></div><div classes="ui-resizable-handle ui-resizable-e" ref="12"></div><div classes="ui-resizable-handle ui-resizable-s" ref="14"></div><div classes="ui-resizable-handle ui-resizable-w" ref="16"></div><div classes="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" ref="11"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="15"></div></div></body>
Close the dialog box by clicking the "x".
click
7
null
stop
Close the dialog box by clicking the "x". <body ref="10"><form id="mturk_form" ref="7"><div id="wrap" ref="17"><div id="area" ref="3"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="19"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="12"><span id="ui-id-3" 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="13"><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="15" text="juarez nicky bankruptcy rainbow. add. thanksgiving. cheung."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="1"></div><div classes="ui-resizable-handle ui-resizable-e" ref="4"></div><div classes="ui-resizable-handle ui-resizable-s" ref="8"></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="2"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="11"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="14"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="9"></div></div></body>
Close the dialog box by clicking the "x".
click
13
null
stop
Close the dialog box by clicking the "x". <body ref="2"><form id="mturk_form" ref="17"><div id="wrap" ref="14"><div id="area" ref="16"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="7"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="4"><span id="ui-id-3" 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="1"><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="18"><p ref="15" text="unable. rage offer resentment potent."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="5"></div><div classes="ui-resizable-handle ui-resizable-e" ref="13"></div><div classes="ui-resizable-handle ui-resizable-s" ref="19"></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="9"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="12"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="6"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="8"></div></div></body>
Close the dialog box by clicking the "x".
click
1
null
stop
Close the dialog box by clicking the "x". <body ref="13"><form id="mturk_form" ref="14"><div id="wrap" ref="8"><div id="area" ref="1"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="2"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="6"><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="18"><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="16"><p ref="15" text="keane 1,300 britain corrected. andhra."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="7"></div><div classes="ui-resizable-handle ui-resizable-e" ref="9"></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="10"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="3"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="4"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="5"></div></div></body>
Close the dialog box by clicking the "x".
click
18
null
stop
Close the dialog box by clicking the "x". <body ref="9"><form id="mturk_form" ref="16"><div id="wrap" ref="14"><div id="area" ref="4"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="1"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="15"><span id="ui-id-2" 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="5"><span classes="ui-button-icon ui-icon ui-icon-closethick" ref="8"></span><t ref="-6" text="close"></t></button></div><div id="dialog" classes="ui-dialog-content ui-widget-content" ref="11"><p ref="19" text="governments ominous. fraser resolving unharmed repeal."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="13"></div><div classes="ui-resizable-handle ui-resizable-e" ref="2"></div><div classes="ui-resizable-handle ui-resizable-s" ref="18"></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="3"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="7"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="10"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="17"></div></div></body>
Close the dialog box by clicking the "x".
click
5
null
stop
Close the dialog box by clicking the "x". <body ref="5"><form id="mturk_form" ref="17"><div id="wrap" ref="9"><div id="area" ref="16"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="1"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="19"><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="10"><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="8"><p ref="12" text="disturbances delivering drain disappointed. heinz."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="7"></div><div classes="ui-resizable-handle ui-resizable-e" ref="2"></div><div classes="ui-resizable-handle ui-resizable-s" ref="3"></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="18"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="4"></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>
Close the dialog box by clicking the "x".
click
10
null
stop
Close the dialog box by clicking the "x". <body ref="4"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="5"></div></div></form><div classes="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front ui-draggable ui-resizable" ref="13"><div classes="ui-dialog-titlebar ui-corner-all ui-widget-header ui-helper-clearfix ui-draggable-handle" ref="7"><span id="ui-id-3" 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="12"><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="18" text="privacy constable smuggle exporting instead swine."></p></div><div classes="ui-resizable-handle ui-resizable-n" ref="10"></div><div classes="ui-resizable-handle ui-resizable-e" ref="6"></div><div classes="ui-resizable-handle ui-resizable-s" ref="15"></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="17"></div><div classes="ui-resizable-handle ui-resizable-sw" ref="19"></div><div classes="ui-resizable-handle ui-resizable-ne" ref="8"></div><div classes="ui-resizable-handle ui-resizable-nw" ref="14"></div></div></body>
Close the dialog box by clicking the "x".
click
12
null
stop