MachinePublishers / jBrowserDriver

A programmable, embeddable web browser driver compatible with the Selenium WebDriver spec -- headless, WebKit-based, pure Java
Other
809 stars 143 forks source link

jBrowserDriver page load fails with org.openqa.selenium.NoSuchElementException: Element not found or does not exist. #363

Closed dinukapryzm closed 4 years ago

dinukapryzm commented 4 years ago

Hi Guys,

So I am trying to load the following web page using jBrowserDriver https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5#rowId4

And I keep getting this error

org.openqa.selenium.NoSuchElementException: Element not found or does not exist.

Any help on this is much appreciated. I have added my configuration details and the trace logs below.

This is my configuration;

    Settings settings = Settings.builder()
                .userAgent(UserAgent.CHROME)
                .socketTimeout(30000)
                .connectTimeout(30000)
                .connectionReqTimeout(30000)
                .ajaxResourceTimeout(30000)
                .ajaxWait(30000)
                .logTrace(true)
                .logJavascript(true)
                .javascript(true)
                .ssl("trustanything").javaOptions("-Djsse.enableSNIExtension=false").hostnameVerification(false)
                .build();
        JBrowserDriver driver = new JBrowserDriver(settings);
        driver.get(url);
System.out.println(driver.getPageSource())

I enabled tracing and this is what I got as the output;

[2020-01-14T03:41:16.324][Instance 1][Port 58398] Warning: Single GUI Threadiong is enabled, FPS should be slower
[2020-01-14T03:41:16.822][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5 ** {timestamp: 1578973276822, state: page_started, progress: 0.1, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.259][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5 ** {timestamp: 1578973278259, state: contenttype_received, progress: 0.1, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:18.557][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5 ** {timestamp: 1578973278556, state: title_received, progress: 0.30000000000000004, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:18.557][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/superfish.css?v=39 ** {timestamp: 1578973278557, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.557][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/superfish-vertical.css?v=39 ** {timestamp: 1578973278557, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.557][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/glossary.css?v=39 ** {timestamp: 1578973278557, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.558][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/base.css?v=39 ** {timestamp: 1578973278557, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.558][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/print.css?v=39 ** {timestamp: 1578973278558, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.558][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/w3-ct.css?v=39 ** {timestamp: 1578973278558, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.558][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/20a31629ec.js ** {timestamp: 1578973278558, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.559][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/search-results.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.559][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/jquery.dataTables.min.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.559][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/fixedHeader.dataTables.min.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.559][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/buttons.dataTables.min.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.559][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/responsive.dataTables.min.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/search-results-dt-overrides.css?v=39 ** {timestamp: 1578973278559, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/extensionsMgr.css?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/jquery.min.js?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/superclick.min.js?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/ct.js?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/ctmenu.js?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/extensionsMgr.js?v=39 ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/working.gif ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/working.js ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.560][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/ct.gov-nlm-nih-logo.png ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.561][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/hamburgerMenuIcon.png ** {timestamp: 1578973278560, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.561][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/pulldown.png ** {timestamp: 1578973278561, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.561][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/cart.js?v=39 ** {timestamp: 1578973278561, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.561][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-expand-trans.png ** {timestamp: 1578973278561, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.562][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/left_arrow_transp.gif ** {timestamp: 1578973278561, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.562][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-collapse-trans.png ** {timestamp: 1578973278562, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.562][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/right_arrow_transp.gif ** {timestamp: 1578973278562, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.562][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-rss.jpg ** {timestamp: 1578973278562, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.562][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-download-records.png ** {timestamp: 1578973278562, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/warning.png ** {timestamp: 1578973278562, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/jquery.dataTables.min.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.fixedHeader.min.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.buttons.min.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/buttons.colVis.min.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.responsive.min.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/CTDate.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/instrumentNCBIBaseJS.min.js?v=2 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.563][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/main-glossary.js?v=39 ** {timestamp: 1578973278563, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:18.788][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/base.css?v=39 ** {timestamp: 1578973278788, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.018][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/search-results.css?v=39 ** {timestamp: 1578973279018, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.247][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/jquery.dataTables.min.css?v=39 ** {timestamp: 1578973279247, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.411][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/20a31629ec.js ** {timestamp: 1578973279411, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.458][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/superfish-vertical.css?v=39 ** {timestamp: 1578973279458, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.458][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/superfish.css?v=39 ** {timestamp: 1578973279458, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.459][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/glossary.css?v=39 ** {timestamp: 1578973279459, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.462][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/w3-ct.css?v=39 ** {timestamp: 1578973279462, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.470][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/20a31629ec.css ** {timestamp: 1578973279470, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:19.472][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/fixedHeader.dataTables.min.css?v=39 ** {timestamp: 1578973279472, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.632][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/releases/v4.7.0/css/font-awesome-css.min.css ** {timestamp: 1578973279632, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:19.632][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/20a31629ec.css ** {timestamp: 1578973279632, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.684][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/responsive.dataTables.min.css?v=39 ** {timestamp: 1578973279683, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.684][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/css/buttons.dataTables.min.css?v=39 ** {timestamp: 1578973279684, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.685][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/search-results-dt-overrides.css?v=39 ** {timestamp: 1578973279685, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.693][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/extensionsMgr.css?v=39 ** {timestamp: 1578973279693, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.795][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/releases/v4.7.0/css/font-awesome-css.min.css ** {timestamp: 1578973279795, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.829][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/releases/v4.7.0/fonts/fontawesome-webfont.woff ** {timestamp: 1578973279828, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:19.907][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/superclick.min.js?v=39 ** {timestamp: 1578973279907, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.908][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/ct.js?v=39 ** {timestamp: 1578973279907, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.913][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/ctmenu.js?v=39 ** {timestamp: 1578973279913, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:19.917][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/extensionsMgr.js?v=39 ** {timestamp: 1578973279917, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.128][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/working.js ** {timestamp: 1578973280128, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.132][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/cart.js?v=39 ** {timestamp: 1578973280132, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.137][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.fixedHeader.min.js?v=39 ** {timestamp: 1578973280137, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.169][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/jquery.min.js?v=39 ** {timestamp: 1578973280169, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.176][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/chevron-small.gif ** {timestamp: 1578973280176, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.177][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-subscribe-rss.png ** {timestamp: 1578973280177, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.340][Instance 1][Port 58398] -Rsrc-> https://use.fontawesome.com/releases/v4.7.0/fonts/fontawesome-webfont.woff ** {timestamp: 1578973280339, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.397][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.buttons.min.js?v=39 ** {timestamp: 1578973280397, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.405][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/jquery.dataTables.min.js?v=39 ** {timestamp: 1578973280405, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.406][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/buttons.colVis.min.js?v=39 ** {timestamp: 1578973280406, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.409][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/dataTables.responsive.min.js?v=39 ** {timestamp: 1578973280407, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.410][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/to-top.png ** {timestamp: 1578973280410, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.438][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/jquery/js/CTDate.js?v=39 ** {timestamp: 1578973280438, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.647][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/working.gif ** {timestamp: 1578973280647, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.663][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/analytics.js ** {timestamp: 1578973280663, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.670][Instance 1][Port 58398] -Rsrc-> https://www.ncbi.nlm.nih.gov/stat?HTTP_REFERER=&SELF_URL=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&browserheight=600&browserwidth=1000&colorDepth=24&cookieSize=108&cookieenabled=true&is_browser_supported=true&jsevent=render&jsloadtime=&jsperf_basePage=1743&jsperf_connect=0&jsperf_dns=0&jsperf_navType=0&jsperf_redirectCount=0&jsperf_ttfb=0&jsrendertime=&myncbi_signed_in=false&ncbi_algorithm=&ncbi_app=ctgov&ncbi_ctcond=%22Abdominal%20Aortic%20Aneurysm%22&ncbi_cthost=wp4&ncbi_ctipid=InEVCQoE&ncbi_ctrank=5&ncbi_ctreqid=RRc02Nm8&ncbi_ctsessid=SRc01qiX&ncbi_db=ctgov&ncbi_featured_srcdb=&ncbi_nwds=&ncbi_pcid=&ncbi_pdid=results&ncbi_phid=e4f84fb82326a2c91578973280662SID&ncbi_program=&ncbi_sid=8618345be1d385e6_8aaf4SID&ncbi_timesinceload=6&ncbi_timesincenavstart=3847&pagename=ctgov%3Actgov%3Aresults%3ANONE&screenavailheight=600&screenavailwidth=1000&screenheight=600&screenwidth=1000&server=clinicaltrials.gov&sgSource=native&sgversion=0.25.1&sgversion_hotfix=1&sgversion_major=0&sgversion_minor=25&spa_index=0 ** {timestamp: 1578973280670, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.683][Instance 1][Port 58398] -Rsrc-> https://www.ncbi.nlm.nih.gov/stat?browserheight=600&browserwidth=1000&colorDepth=24&cookieSize=108&cookieenabled=true&is_browser_supported=true&jsevent=domready&myncbi_signed_in=false&ncbi_algorithm=&ncbi_app=ctgov&ncbi_ctcond=%22Abdominal%20Aortic%20Aneurysm%22&ncbi_cthost=wp4&ncbi_ctipid=InEVCQoE&ncbi_ctrank=5&ncbi_ctreqid=RRc02Nm8&ncbi_ctsessid=SRc01qiX&ncbi_db=ctgov&ncbi_featured_srcdb=&ncbi_nwds=&ncbi_pcid=&ncbi_pdid=results&ncbi_phid=e4f84fb82326a2c91578973280662SID&ncbi_program=&ncbi_sid=8618345be1d385e6_8aaf4SID&ncbi_timesinceload=22&ncbi_timesincenavstart=3863&pagename=ctgov%3Actgov%3Aresults%3ANONE&screenavailheight=600&screenavailwidth=1000&screenheight=600&screenwidth=1000&server=clinicaltrials.gov&sgSource=native&sgversion=0.25.1&sgversion_hotfix=1&sgversion_major=0&sgversion_minor=25&spa_index=0 ** {timestamp: 1578973280683, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.683][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5 ** {timestamp: 1578973280683, state: document_available, progress: 0.6943535647539978, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.683][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/instrumentNCBIBaseJS.min.js?v=2 ** {timestamp: 1578973280683, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.688][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/hamburgerMenuIcon.png ** {timestamp: 1578973280688, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.694][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/ct.gov-nlm-nih-logo.png ** {timestamp: 1578973280694, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.795][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/results/rpc/0i0yqBc9u64WpV7y5dcLedNGvnjGZwUPeBS33dNHLwUzFdDn ** {timestamp: 1578973280795, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.847][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/analytics.js ** {timestamp: 1578973280847, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.876][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/r/collect?v=1&_v=j79&a=743736295&t=pageview&_s=1&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&_u=YEDAAEAB~&jid=132255824&gjid=1065881807&cid=226351158.1578973281&tid=UA-68648221-4&_gid=2077681628.1578973281&_r=1&cd1=ctgov&cd2=ctgov&cd3=results&cd5=NO&cd6=ctgov%3Actgov%3Aresults&cd8=&cd9=&cd10=&cd11=&cd12=&cd13=&cd14=&cd15=&cd16=&cg1=ctgov&cg2=ctgov&cg3=results&cg4=ctgov%3Actgov%3Aresults&z=1947427803 ** {timestamp: 1578973280875, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.878][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/r/collect?v=1&_v=j79&a=743736295&t=pageview&_s=1&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&_u=YEDAAEAB~&jid=580511046&gjid=945192257&cid=226351158.1578973281&tid=UA-33523145-1&_gid=2077681628.1578973281&_r=1&cd1=HHS&cd2=NCBI%20-%20clinicaltrials.gov&cd3=NCBI%20Pinger%200.25.1&z=226273124 ** {timestamp: 1578973280878, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.879][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/js/main-glossary.js?v=39 ** {timestamp: 1578973280879, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.901][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/uswds/angle-arrow-down-hover.svg ** {timestamp: 1578973280901, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:20.903][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/pulldown.png ** {timestamp: 1578973280903, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.908][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-expand-trans.png ** {timestamp: 1578973280908, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.912][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/left_arrow_transp.gif ** {timestamp: 1578973280912, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.974][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/r/collect?v=1&_v=j79&a=743736295&t=pageview&_s=1&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&_u=YEDAAEAB~&jid=132255824&gjid=1065881807&cid=226351158.1578973281&tid=UA-68648221-4&_gid=2077681628.1578973281&_r=1&cd1=ctgov&cd2=ctgov&cd3=results&cd5=NO&cd6=ctgov%3Actgov%3Aresults&cd8=&cd9=&cd10=&cd11=&cd12=&cd13=&cd14=&cd15=&cd16=&cg1=ctgov&cg2=ctgov&cg3=results&cg4=ctgov%3Actgov%3Aresults&z=1947427803 ** {timestamp: 1578973280974, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:20.990][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/r/collect?v=1&_v=j79&a=743736295&t=pageview&_s=1&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&_u=YEDAAEAB~&jid=580511046&gjid=945192257&cid=226351158.1578973281&tid=UA-33523145-1&_gid=2077681628.1578973281&_r=1&cd1=HHS&cd2=NCBI%20-%20clinicaltrials.gov&cd3=NCBI%20Pinger%200.25.1&z=226273124 ** {timestamp: 1578973280990, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.220][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5#rowId4 ** {timestamp: 1578973281220, state: null, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.223][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/results/rpc/0i0yqBc9u64WpV7y5dcLedNGvnjGZwUPeBS33dNHLwUzFdDn ** {timestamp: 1578973281223, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.263][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-collapse-trans.png ** {timestamp: 1578973281263, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.263][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/right_arrow_transp.gif ** {timestamp: 1578973281263, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.271][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-rss.jpg ** {timestamp: 1578973281271, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.271][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-download-records.png ** {timestamp: 1578973281271, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.344][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/collect?v=1&_v=j79&a=743736295&t=event&_s=2&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&ec=scroll&_u=aEDAAEAB~&jid=&gjid=&cid=226351158.1578973281&tid=UA-68648221-4&_gid=2077681628.1578973281&cd1=ctgov&cd2=ctgov&cd3=results&cd5=NO&cd6=ctgov%3Actgov%3Aresults&cd8=&cd9=&cd10=&cd11=&cd12=&cd13=&cd14=&cd15=&cd16=&cg1=ctgov&cg2=ctgov&cg3=results&cg4=ctgov%3Actgov%3Aresults&z=1438165005 ** {timestamp: 1578973281344, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:21.359][Instance 1][Port 58398] -Rsrc-> https://www.google-analytics.com/collect?v=1&_v=j79&a=743736295&t=event&_s=2&dl=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&ul=en-us&de=UTF-8&dt=Search%20of%3A%20%22Abdominal%20Aortic%20Aneurysm%22%20-%20List%20Results%20-%20ClinicalTrials.gov&sd=24-bit&sr=1000x600&vp=1000x600&je=0&ec=scroll&_u=aEDAAEAB~&jid=&gjid=&cid=226351158.1578973281&tid=UA-68648221-4&_gid=2077681628.1578973281&cd1=ctgov&cd2=ctgov&cd3=results&cd5=NO&cd6=ctgov%3Actgov%3Aresults&cd8=&cd9=&cd10=&cd11=&cd12=&cd13=&cd14=&cd15=&cd16=&cg1=ctgov&cg2=ctgov&cg3=results&cg4=ctgov%3Actgov%3Aresults&z=1438165005 ** {timestamp: 1578973281359, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.483][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/chevron-small.gif ** {timestamp: 1578973281482, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.484][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/warning.png ** {timestamp: 1578973281484, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.491][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/to-top.png ** {timestamp: 1578973281491, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.492][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/icon-subscribe-rss.png ** {timestamp: 1578973281491, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.514][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/images/uswds/angle-arrow-down-hover.svg ** {timestamp: 1578973281513, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.632][Instance 1][Port 58398] -Rsrc-> https://www.ncbi.nlm.nih.gov/stat?browserheight=600&browserwidth=1000&colorDepth=24&cookieSize=108&cookieenabled=true&is_browser_supported=true&jsevent=domready&myncbi_signed_in=false&ncbi_algorithm=&ncbi_app=ctgov&ncbi_ctcond=%22Abdominal%20Aortic%20Aneurysm%22&ncbi_cthost=wp4&ncbi_ctipid=InEVCQoE&ncbi_ctrank=5&ncbi_ctreqid=RRc02Nm8&ncbi_ctsessid=SRc01qiX&ncbi_db=ctgov&ncbi_featured_srcdb=&ncbi_nwds=&ncbi_pcid=&ncbi_pdid=results&ncbi_phid=e4f84fb82326a2c91578973280662SID&ncbi_program=&ncbi_sid=8618345be1d385e6_8aaf4SID&ncbi_timesinceload=22&ncbi_timesincenavstart=3863&pagename=ctgov%3Actgov%3Aresults%3ANONE&screenavailheight=600&screenavailwidth=1000&screenheight=600&screenwidth=1000&server=clinicaltrials.gov&sgSource=native&sgversion=0.25.1&sgversion_hotfix=1&sgversion_major=0&sgversion_minor=25&spa_index=0 ** {timestamp: 1578973281631, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.725][Instance 1][Port 58398] -Rsrc-> https://www.ncbi.nlm.nih.gov/stat?HTTP_REFERER=&SELF_URL=https%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fresults%3Fcond%3D%2522Abdominal%2BAortic%2BAneurysm%2522%26draw%3D2%26rank%3D5&browserheight=600&browserwidth=1000&colorDepth=24&cookieSize=108&cookieenabled=true&is_browser_supported=true&jsevent=render&jsloadtime=&jsperf_basePage=1743&jsperf_connect=0&jsperf_dns=0&jsperf_navType=0&jsperf_redirectCount=0&jsperf_ttfb=0&jsrendertime=&myncbi_signed_in=false&ncbi_algorithm=&ncbi_app=ctgov&ncbi_ctcond=%22Abdominal%20Aortic%20Aneurysm%22&ncbi_cthost=wp4&ncbi_ctipid=InEVCQoE&ncbi_ctrank=5&ncbi_ctreqid=RRc02Nm8&ncbi_ctsessid=SRc01qiX&ncbi_db=ctgov&ncbi_featured_srcdb=&ncbi_nwds=&ncbi_pcid=&ncbi_pdid=results&ncbi_phid=e4f84fb82326a2c91578973280662SID&ncbi_program=&ncbi_sid=8618345be1d385e6_8aaf4SID&ncbi_timesinceload=6&ncbi_timesincenavstart=3847&pagename=ctgov%3Actgov%3Aresults%3ANONE&screenavailheight=600&screenavailwidth=1000&screenheight=600&screenwidth=1000&server=clinicaltrials.gov&sgSource=native&sgversion=0.25.1&sgversion_hotfix=1&sgversion_major=0&sgversion_minor=25&spa_index=0 ** {timestamp: 1578973281725, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.735][Instance 1][Port 58398] -Rsrc-> https://clinicaltrials.gov/ct2/html/css/print.css?v=39 ** {timestamp: 1578973281734, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}

[2020-01-14T03:41:21.735][Instance 1][Port 58398] -Rsrc-> https://zn7whwrcrmbs9xwyd-nlmenterprise.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_7WHWRcRMBs9xWYd&t=1578973281735 ** {timestamp: 1578973281735, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:21.817][Instance 1][Port 58398] -Rsrc-> https://zn7whwrcrmbs9xwyd-nlmenterprise.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_7WHWRcRMBs9xWYd&t=1578973281735 ** {timestamp: 1578973281817, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.838][Instance 1][Port 58398] -Rsrc-> https://siteintercept.qualtrics.com/WRSiteInterceptEngine/Targeting.php?Q_ZoneID=ZN_7WHWRcRMBs9xWYd&Q_CLIENTVERSION=1.18.0&Q_CLIENTTYPE=web ** {timestamp: 1578973281838, state: resource_started, progress: 0.0, error: none, contentType: null, frame: 4970033696}
[2020-01-14T03:41:21.850][Instance 1][Port 58398] -Page-> https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5#rowId4 ** {timestamp: 1578973281850, state: page_finished, progress: 0.0, error: none, contentType: text/html, frame: 4970033696}
[2020-01-14T03:41:21.931][Instance 1][Port 58398] -Rsrc-> https://siteintercept.qualtrics.com/WRSiteInterceptEngine/Targeting.php?Q_ZoneID=ZN_7WHWRcRMBs9xWYd&Q_CLIENTVERSION=1.18.0&Q_CLIENTTYPE=web ** {timestamp: 1578973281930, state: resource_finished, progress: 1.0, error: none, contentType: text/html, frame: 4970033696}

30822 [Thread-138-parse-executor[105 105]] INFO  c.d.s.b.JSoupParserBolt - Parsing : starting https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5
org.openqa.selenium.NoSuchElementException: Element not found or does not exist.
For documentation on this error, please visit: https://www.seleniumhq.org/exceptions/no_such_element.html
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: '192-168-1-12.tpgi.com.au', ip: 'fe80:0:0:0:1cb4:4295:b7aa:7914%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.15.2', java.version: '1.8.0_181'
Driver info: driver.version: unknown
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.machinepublishers.jbrowserdriver.Util.handleException(Util.java:128)
        at com.machinepublishers.jbrowserdriver.JBrowserDriver.getPageSource(JBrowserDriver.java:601)
        at org.health.pryzm.ClinicalTrialsJSoupParserBolt.execute(ClinicalTrialsJSoupParserBolt.java:147)
        at org.apache.storm.daemon.executor$fn__10180$tuple_action_fn__10182.invoke(executor.clj:739)
        at org.apache.storm.daemon.executor$mk_task_receiver$fn__10101.invoke(executor.clj:468)
        at org.apache.storm.disruptor$clojure_handler$reify__9612.onEvent(disruptor.clj:41)
        at org.apache.storm.utils.DisruptorQueue.consumeBatchToCursor(DisruptorQueue.java:509)
        at org.apache.storm.utils.DisruptorQueue.consumeBatchWhenAvailable(DisruptorQueue.java:487)
        at org.apache.storm.disruptor$consume_batch_when_available.invoke(disruptor.clj:74)
        at org.apache.storm.daemon.executor$fn__10180$fn__10193$fn__10246.invoke(executor.clj:861)
        at org.apache.storm.util$async_loop$fn__624.invoke(util.clj:484)
        at clojure.lang.AFn.run(AFn.java:22)
        at java.lang.Thread.run(Thread.java:748)
Caused by: org.openqa.selenium.NoSuchElementException: Element not found or does not exist.
For documentation on this error, please visit: https://www.seleniumhq.org/exceptions/no_such_element.html
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: '192-168-1-12.tpgi.com.au', ip: 'fe80:0:0:0:1cb4:4295:b7aa:7914%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.15.2', java.version: '1.8.0_181'
Driver info: driver.version: unknown
        at com.machinepublishers.jbrowserdriver.ElementServer.validate(ElementServer.java:202)
        at com.machinepublishers.jbrowserdriver.ElementServer.lambda$new$0(ElementServer.java:152)
        at com.machinepublishers.jbrowserdriver.AppThread$Runner.run(AppThread.java:88)
        at com.sun.javafx.application.PlatformImpl.lambda$null$172(PlatformImpl.java:295)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.application.PlatformImpl.lambda$runLater$173(PlatformImpl.java:294)
        at com.machinepublishers.glass.ui.monocle.RunnableProcessor.runLoop(RunnableProcessor.java:94)
        at com.machinepublishers.glass.ui.monocle.RunnableProcessor.run(RunnableProcessor.java:53)
        ... 1 more
30962 [Thread-138-parse-executor[105 105]] ERROR c.d.s.b.JSoupParserBolt - Exception while parsing https://clinicaltrials.gov/ct2/results?cond=%22Abdominal+Aortic+Aneurysm%22&draw=2&rank=5: org.openqa.selenium.NoSuchElementException: Element not found or does not exist.
For documentation on this error, please visit: https://www.seleniumhq.org/exceptions/no_such_element.html
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: '192-168-1-12.tpgi.com.au', ip: 'fe80:0:0:0:1cb4:4295:b7aa:7914%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.15.2', java.version: '1.8.0_181'
Driver info: driver.version: unknown