Skip to content

Instantly share code, notes, and snippets.

@xywang68
Last active April 6, 2018 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xywang68/dac2bb83caec84c72e44edae508266e1 to your computer and use it in GitHub Desktop.
Save xywang68/dac2bb83caec84c72e44edae508266e1 to your computer and use it in GitHub Desktop.
vagrant@desktop02:~$ node --version
v8.11.1
vagrant@desktop02:~$ npm ls selenium-webdriver --depth=0
SFPortal-JS@1.0.0 /home/vagrant
└── selenium-webdriver@4.0.0-alpha.1
<!--
Base off https://github.com/Ardesco/Selenium-Maven-Template
modified selenium versioin to 3.5.1
-->
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2015 Lazery Attack - http://www.lazeryattack.com ~ http://www.lazerycode.com
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.lazerycode.selenium</groupId>
<artifactId>maven-template</artifactId>
<version>1.0-SNAPSHOT</version>
<modelVersion>4.0.0</modelVersion>
<name>Selenium Maven Template</name>
<description>A Maven Template For Selenium</description>
<url>http://www.lazerycode.com</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<!--Dependency Versions-->
<selenium.version>3.5.1</selenium.version>
<assertj-core.version>3.9.1</assertj-core.version>
<testng.version>6.14.2</testng.version>
<query.version>1.2.0</query.version>
<!--Plugin Versions-->
<driver-binary-downloader-maven-plugin.version>1.0.17</driver-binary-downloader-maven-plugin.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>2.21.0</maven-failsafe-plugin.version>
<!--Configuration Properties-->
<overwrite.binaries>false</overwrite.binaries>
<read.timeout>30000</read.timeout>
<connection.timeout>40000</connection.timeout>
<retry.attempts>4</retry.attempts>
<browser>firefox_headless</browser>
<threads>1</threads>
<remote>false</remote>
<seleniumGridURL/>
<platform/>
<browserVersion/>
<proxyEnabled>false</proxyEnabled>
<proxyHost/>
<proxyPort/>
</properties>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.lazerycode.selenium</groupId>
<artifactId>query</artifactId>
<version>${query.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>selenium-tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<version>${maven-compiler-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.lazerycode.selenium</groupId>
<artifactId>driver-binary-downloader-maven-plugin</artifactId>
<version>${driver-binary-downloader-maven-plugin.version}</version>
<configuration>
<rootStandaloneServerDirectory>${project.basedir}/src/test/resources/selenium_standalone_binaries</rootStandaloneServerDirectory>
<downloadedZipFileDirectory>${project.basedir}/src/test/resources/selenium_standalone_zips</downloadedZipFileDirectory>
<customRepositoryMap>${project.basedir}/src/test/resources/RepositoryMap.xml</customRepositoryMap>
<overwriteFilesThatExist>${overwrite.binaries}</overwriteFilesThatExist>
<onlyGetDriversForHostOperatingSystem>false</onlyGetDriversForHostOperatingSystem>
<fileDownloadRetryAttempts>${retry.attempts}</fileDownloadRetryAttempts>
<fileDownloadReadTimeout>${read.timeout}</fileDownloadReadTimeout>
<operatingSystems>
<windows>true</windows>
<linux>true</linux>
<mac>true</mac>
</operatingSystems>
</configuration>
<executions>
<execution>
<goals>
<goal>selenium</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<configuration>
<parallel>methods</parallel>
<threadCount>${threads}</threadCount>
<systemPropertyVariables>
<browser>${browser}</browser>
<screenshotDirectory>${project.build.directory}/screenshots</screenshotDirectory>
<remoteDriver>${remote}</remoteDriver>
<gridURL>${seleniumGridURL}</gridURL>
<desiredPlatform>${platform}</desiredPlatform>
<desiredBrowserVersion>${browserVersion}</desiredBrowserVersion>
<proxyEnabled>${proxyEnabled}</proxyEnabled>
<proxyHost>${proxyHost}</proxyHost>
<proxyPort>${proxyPort}</proxyPort>
<!--Set properties passed in by the driver binary downloader-->
<webdriver.chrome.driver>${webdriver.chrome.driver}</webdriver.chrome.driver>
<webdriver.ie.driver>${webdriver.ie.driver}</webdriver.ie.driver>
<webdriver.opera.driver>${webdriver.opera.driver}</webdriver.opera.driver>
<webdriver.gecko.driver>${webdriver.gecko.driver}</webdriver.gecko.driver>
<webdriver.edge.driver>${webdriver.edge.driver}</webdriver.edge.driver>
</systemPropertyVariables>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<!--This goal makes the build fail if you have test failures-->
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
package com.lazerycode.selenium.tests;
import com.lazerycode.selenium.DriverBase;
import com.lazerycode.selenium.page_objects.GoogleHomePage;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.annotations.Test;
import java.util.List;
public class selectTextExampleIT extends DriverBase {
@Test
public void selectText() throws Exception {
WebDriver driver = getDriver();
driver.get("http://****fqdn to http server****/test.html");
WebElement selectElement = driver.findElement(By.xpath("//select"));
System.out.println("selectElementText is: " + selectElement.getText());
}
@Test
public void optionText() throws Exception {
WebDriver driver = getDriver();
driver.get("http://****fqdn to http server****/test.html");
List<WebElement> allOptions = driver.findElements(By.xpath(".//option"));
for ( WebElement optionElement: allOptions)
System.out.println("optionElementText is: " + optionElement.getText());
}
}
vagrant@desktop02:~$ node test.js
done
All
Loss and Liq
Loan
Performance - OTS
Deal
Performance
Performance - MBA
Property
Prepayments
Modifications
Servicer Advances
vagrant@desktop02:~$ node test.js
done
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:9470) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3)
All
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9)
(node:9470) UnhandledPromiseRejectionWarning: UnsupportedOperationError: Error 404: Not Found
Not Found
at parseHttpResponse (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:557:11)
at Executor.execute (/home/vagrant/node_modules/selenium-webdriver/lib/http.js:468:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:9470) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10)
17:32:54.412 INFO - Selenium build info: version: '3.4.0', revision: 'unknown'
17:32:54.413 INFO - Launching a standalone Selenium Server
2018-04-05 17:32:54.436:INFO::main: Logging initialized @469ms to org.seleniumhq.jetty9.util.log.StdErrLog
17:32:54.502 INFO - Driver class not found: com.opera.core.systems.OperaDriver
17:32:54.502 INFO - Driver provider com.opera.core.systems.OperaDriver registration is skipped:
Unable to create new instances on this machine.
17:32:54.502 INFO - Driver class not found: com.opera.core.systems.OperaDriver
17:32:54.502 INFO - Driver provider com.opera.core.systems.OperaDriver is not registered
17:32:54.504 INFO - Driver provider org.openqa.selenium.safari.SafariDriver registration is skipped:
registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform VISTA
2018-04-05 17:32:54.607:INFO:osjs.Server:main: jetty-9.4.3.v20170317
2018-04-05 17:32:54.670:INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@1fa1d9b{/,null,AVAILABLE}
2018-04-05 17:32:54.815:INFO:osjs.AbstractConnector:main: Started ServerConnector@1a5c39e{HTTP/1.1,[http/1.1]}{0.0.0.0:4444}
2018-04-05 17:32:54.816:INFO:osjs.Server:main: Started @897ms
17:32:54.816 INFO - Selenium Server is up and running
17:32:55.263 INFO - SessionCleaner initialized with insideBrowserTimeout 0 and clientGoneTimeout 1800000 polling every 180000
17:32:55.283 DEBUG - Handling: GET /status
17:32:55.287 DEBUG - Executing: org.openqa.selenium.remote.server.handler.Status@18fd2c2)
17:32:55.294 DEBUG - Done: org.openqa.selenium.remote.server.handler.Status@18fd2c2
17:32:55.295 DEBUG - Finished: GET /status
17:33:05.410 DEBUG - Handling: POST /session
17:33:05.429 INFO - Executing: [new session: Capabilities [{browserName=internet explorer}]])
17:33:05.469 INFO - Creating a new session for Capabilities [{browserName=internet explorer}]
17:33:05.974 DEBUG - Executing: newSession [null, newSession {desiredCapabilities=org.openqa.selenium.ImmutableCapabilities@6cc927}]
17:33:06.013 DEBUG - Waiting for [http://localhost:2311/status]
17:33:06.015 DEBUG - Polling http://localhost:2311/status
Started InternetExplorerDriver server (32-bit)
3.4.0.0
Listening on port 2311
Only local connections are allowed
17:33:06.530 DEBUG - Polling http://localhost:2311/status
17:33:06.536 DEBUG - sun.net.www.MessageHeader@18fb7525 pairs: {GET /status HTTP/1.1: null}{User-Agent: Java/1.8.0_161}{Host: localhost:2311}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}
17:33:06.538 DEBUG - sun.net.www.MessageHeader@148a85d6 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 167}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
17:33:06.616 DEBUG - Attempting multi-dialect session, assuming Postel's Law holds true on the remote end
17:33:06.634 DEBUG - CookieSpec selected: default
17:33:06.654 DEBUG - Auth cache not set in the context
17:33:06.656 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:06.674 DEBUG - Connection leased: [id: 0][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:06.676 DEBUG - Opening connection {}->http://localhost:2311
17:33:06.677 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:06.678 DEBUG - Connection established 127.0.0.1:58237<->127.0.0.1:2311
17:33:06.679 DEBUG - http-outgoing-0: set socket timeout to 10800000
17:33:06.679 DEBUG - Executing request POST /session HTTP/1.1
17:33:06.679 DEBUG - Target auth state: UNCHALLENGED
17:33:06.679 DEBUG - Proxy auth state: UNCHALLENGED
17:33:06.683 DEBUG - http-outgoing-0 >> POST /session HTTP/1.1
17:33:06.683 DEBUG - http-outgoing-0 >> Content-Type: application/json; charset=utf-8
17:33:06.683 DEBUG - http-outgoing-0 >> Content-Length: 425
17:33:06.683 DEBUG - http-outgoing-0 >> Host: localhost:2311
17:33:06.683 DEBUG - http-outgoing-0 >> Connection: Keep-Alive
17:33:06.683 DEBUG - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:06.683 DEBUG - http-outgoing-0 >> Accept-Encoding: gzip,deflate
17:33:06.684 DEBUG - http-outgoing-0 >> "POST /session HTTP/1.1[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "Content-Type: application/json; charset=utf-8[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "Content-Length: 425[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "Host: localhost:2311[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:06.684 DEBUG - http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> "[\r][\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> "{[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "desiredCapabilities": {[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "se:ieOptions": {},[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "browserName": "internet explorer"[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " },[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "requiredCapabilities": {},[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "capabilities": {[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "desiredCapabilities": {[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "se:ieOptions": {},[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "browserName": "internet explorer"[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " },[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "requiredCapabilities": {},[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "alwaysMatch": {[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "se:ieOptions": {}[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " },[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "firstMatch": [[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " {[\n]"
17:33:06.685 DEBUG - http-outgoing-0 >> " "browserName": "internet explorer"[\n]"
17:33:06.686 DEBUG - http-outgoing-0 >> " }[\n]"
17:33:06.686 DEBUG - http-outgoing-0 >> " ][\n]"
17:33:06.686 DEBUG - http-outgoing-0 >> " }[\n]"
17:33:06.686 DEBUG - http-outgoing-0 >> "}"
17:33:08.434 DEBUG - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
17:33:08.436 DEBUG - http-outgoing-0 << "Content-Length: 762[\r][\n]"
17:33:08.436 DEBUG - http-outgoing-0 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:08.436 DEBUG - http-outgoing-0 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:08.437 DEBUG - http-outgoing-0 << "Accept-Ranges: bytes[\r][\n]"
17:33:08.437 DEBUG - http-outgoing-0 << "Connection: close[\r][\n]"
17:33:08.437 DEBUG - http-outgoing-0 << "[\r][\n]"
17:33:08.437 DEBUG - http-outgoing-0 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":{"browserName":"internet explorer","javascriptEnabled":true,"pageLoadStrategy":"normal","platform":"WINDOWS","se:ieOptions":{"browserAttachTimeout":0,"elementScrollBehavior":0,"enableElementCacheCleanup":true,"enablePersistentHover":true,"ie.browserCommandLineSwitches":"","ie.enableFullPageScreenshot":true,"ie.ensureCleanSession":false,"ie.fileUploadDialogTimeout":3000,"ie.forceCreateProcessApi":false,"ie.forceShellWindowsApi":false,"ie.useLegacyFileUploadDialogHandling":false,"ignoreProtectedModeSettings":false,"ignoreZoomSetting":false,"initialBrowserUrl":"http://localhost:2311/","nativeEvents":true,"requireWindowFocus":false},"unexpectedAlertBehaviour":"dismiss","version":"11"}}[\n]"
17:33:08.438 DEBUG - http-outgoing-0 << "[\r][\n]"
17:33:08.446 DEBUG - http-outgoing-0 << HTTP/1.1 200 OK
17:33:08.446 DEBUG - http-outgoing-0 << Content-Length: 762
17:33:08.446 DEBUG - http-outgoing-0 << Content-Type: application/json; charset=UTF-8
17:33:08.447 DEBUG - http-outgoing-0 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:08.447 DEBUG - http-outgoing-0 << Accept-Ranges: bytes
17:33:08.447 DEBUG - http-outgoing-0 << Connection: close
17:33:08.458 DEBUG - http-outgoing-0: Close connection
17:33:08.459 DEBUG - Connection discarded
17:33:08.459 DEBUG - Connection released: [id: 0][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:08.482 INFO - Detected dialect: OSS
17:33:08.484 DEBUG - Executed: [null, newSession {desiredCapabilities=org.openqa.selenium.ImmutableCapabilities@6cc927}]
17:33:08.502 INFO - Done: [new session: Capabilities [{browserName=internet explorer}]]
17:33:08.502 DEBUG - Finished: POST /session
17:33:08.548 DEBUG - Handling: POST /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/url
17:33:08.551 INFO - Executing: [get: http://****masked fqdn****/test.html])
17:33:08.552 DEBUG - Executing: get [a8506f2f-6219-4e84-bf44-d87207330fe0, get {url=http://****masked fqdn****/test.html}]
17:33:08.553 DEBUG - CookieSpec selected: default
17:33:08.555 DEBUG - Auth cache not set in the context
17:33:08.555 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:08.556 DEBUG - Connection leased: [id: 1][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:08.556 DEBUG - Opening connection {}->http://localhost:2311
17:33:08.556 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:08.557 DEBUG - Connection established 127.0.0.1:58244<->127.0.0.1:2311
17:33:08.558 DEBUG - http-outgoing-1: set socket timeout to 10800000
17:33:08.558 DEBUG - Executing request POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/url HTTP/1.1
17:33:08.558 DEBUG - Target auth state: UNCHALLENGED
17:33:08.558 DEBUG - Proxy auth state: UNCHALLENGED
17:33:08.559 DEBUG - http-outgoing-1 >> POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/url HTTP/1.1
17:33:08.559 DEBUG - http-outgoing-1 >> Content-Type: application/json; charset=utf-8
17:33:08.559 DEBUG - http-outgoing-1 >> Content-Length: 64
17:33:08.560 DEBUG - http-outgoing-1 >> Host: localhost:2311
17:33:08.560 DEBUG - http-outgoing-1 >> Connection: Keep-Alive
17:33:08.560 DEBUG - http-outgoing-1 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:08.560 DEBUG - http-outgoing-1 >> Accept-Encoding: gzip,deflate
17:33:08.561 DEBUG - http-outgoing-1 >> "POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/url HTTP/1.1[\r][\n]"
17:33:08.561 DEBUG - http-outgoing-1 >> "Content-Type: application/json; charset=utf-8[\r][\n]"
17:33:08.561 DEBUG - http-outgoing-1 >> "Content-Length: 64[\r][\n]"
17:33:08.562 DEBUG - http-outgoing-1 >> "Host: localhost:2311[\r][\n]"
17:33:08.562 DEBUG - http-outgoing-1 >> "Connection: Keep-Alive[\r][\n]"
17:33:08.562 DEBUG - http-outgoing-1 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:08.562 DEBUG - http-outgoing-1 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:08.563 DEBUG - http-outgoing-1 >> "[\r][\n]"
17:33:08.563 DEBUG - http-outgoing-1 >> "{"url":"http://****masked fqdn****/test.html"}"
17:33:08.808 DEBUG - http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
17:33:08.808 DEBUG - http-outgoing-1 << "Content-Length: 77[\r][\n]"
17:33:08.808 DEBUG - http-outgoing-1 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:08.808 DEBUG - http-outgoing-1 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:08.809 DEBUG - http-outgoing-1 << "Accept-Ranges: bytes[\r][\n]"
17:33:08.809 DEBUG - http-outgoing-1 << "Connection: close[\r][\n]"
17:33:08.809 DEBUG - http-outgoing-1 << "[\r][\n]"
17:33:08.809 DEBUG - http-outgoing-1 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":null}[\n]"
17:33:08.810 DEBUG - http-outgoing-1 << "[\r][\n]"
17:33:08.810 DEBUG - http-outgoing-1 << HTTP/1.1 200 OK
17:33:08.810 DEBUG - http-outgoing-1 << Content-Length: 77
17:33:08.810 DEBUG - http-outgoing-1 << Content-Type: application/json; charset=UTF-8
17:33:08.811 DEBUG - http-outgoing-1 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:08.811 DEBUG - http-outgoing-1 << Accept-Ranges: bytes
17:33:08.811 DEBUG - http-outgoing-1 << Connection: close
17:33:08.811 DEBUG - http-outgoing-1: Close connection
17:33:08.812 DEBUG - Connection discarded
17:33:08.812 DEBUG - Connection released: [id: 1][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:08.815 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, get {url=http://****masked fqdn****/test.html}]
17:33:08.815 INFO - Done: [get: http://****masked fqdn****/test.html]
17:33:08.816 DEBUG - Finished: POST /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/url
17:33:08.833 DEBUG - Handling: POST /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/elements
17:33:08.838 INFO - Executing: [find elements: By.xpath: //option])
17:33:08.838 DEBUG - Executing: findElements [a8506f2f-6219-4e84-bf44-d87207330fe0, findElements {using=xpath, value=//option}]
17:33:08.840 DEBUG - CookieSpec selected: default
17:33:08.840 DEBUG - Auth cache not set in the context
17:33:08.840 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:08.841 DEBUG - Connection leased: [id: 2][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:08.841 DEBUG - Opening connection {}->http://localhost:2311
17:33:08.841 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:08.842 DEBUG - Connection established 127.0.0.1:58245<->127.0.0.1:2311
17:33:08.842 DEBUG - http-outgoing-2: set socket timeout to 10800000
17:33:08.843 DEBUG - Executing request POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/elements HTTP/1.1
17:33:08.843 DEBUG - Target auth state: UNCHALLENGED
17:33:08.843 DEBUG - Proxy auth state: UNCHALLENGED
17:33:08.843 DEBUG - http-outgoing-2 >> POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/elements HTTP/1.1
17:33:08.844 DEBUG - http-outgoing-2 >> Content-Type: application/json; charset=utf-8
17:33:08.844 DEBUG - http-outgoing-2 >> Content-Length: 36
17:33:08.844 DEBUG - http-outgoing-2 >> Host: localhost:2311
17:33:08.845 DEBUG - http-outgoing-2 >> Connection: Keep-Alive
17:33:08.845 DEBUG - http-outgoing-2 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:08.845 DEBUG - http-outgoing-2 >> Accept-Encoding: gzip,deflate
17:33:08.845 DEBUG - http-outgoing-2 >> "POST /session/a8506f2f-6219-4e84-bf44-d87207330fe0/elements HTTP/1.1[\r][\n]"
17:33:08.846 DEBUG - http-outgoing-2 >> "Content-Type: application/json; charset=utf-8[\r][\n]"
17:33:08.846 DEBUG - http-outgoing-2 >> "Content-Length: 36[\r][\n]"
17:33:08.846 DEBUG - http-outgoing-2 >> "Host: localhost:2311[\r][\n]"
17:33:08.847 DEBUG - http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]"
17:33:08.847 DEBUG - http-outgoing-2 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:08.847 DEBUG - http-outgoing-2 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:08.848 DEBUG - http-outgoing-2 >> "[\r][\n]"
17:33:08.848 DEBUG - http-outgoing-2 >> "{"using":"xpath","value":"//option"}"
17:33:09.012 DEBUG - http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.012 DEBUG - http-outgoing-2 << "Content-Length: 1482[\r][\n]"
17:33:09.012 DEBUG - http-outgoing-2 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.014 DEBUG - http-outgoing-2 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.014 DEBUG - http-outgoing-2 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.014 DEBUG - http-outgoing-2 << "Connection: close[\r][\n]"
17:33:09.015 DEBUG - http-outgoing-2 << "[\r][\n]"
17:33:09.016 DEBUG - http-outgoing-2 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":[{"ELEMENT":"64187086-213c-45cd-b6ac-308109712ade","element-6066-11e4-a52e-4f735466cecf":"64187086-213c-45cd-b6ac-308109712ade"},{"ELEMENT":"95b06871-e5a1-4a7d-abc6-ac6be78a32d0","element-6066-11e4-a52e-4f735466cecf":"95b06871-e5a1-4a7d-abc6-ac6be78a32d0"},{"ELEMENT":"6b6198e8-fbc0-4d29-bffe-40da9e1f514b","element-6066-11e4-a52e-4f735466cecf":"6b6198e8-fbc0-4d29-bffe-40da9e1f514b"},{"ELEMENT":"bb2cf735-809b-4bab-99bd-27c559319d89","element-6066-11e4-a52e-4f735466cecf":"bb2cf735-809b-4bab-99bd-27c559319d89"},{"ELEMENT":"0bd497ce-690a-4fa6-9965-37db302eb0e1","element-6066-11e4-a52e-4f735466cecf":"0bd497ce-690a-4fa6-9965-37db302eb0e1"},{"ELEMENT":"4f919eb1-deb2-4802-ba51-99b74161bc7a","element-6066-11e4-a52e-4f735466cecf":"4f919eb1-deb2-4802-ba51-99b74161bc7a"},{"ELEMENT":"9acbe05b-0a1b-4ea6-987c-518ef58482b3","element-6066-11e4-a52e-4f735466cecf":"9acbe05b-0a1b-4ea6-987c-518ef58482b3"},{"ELEMENT":"f47cd5d9-f43c-43d8-b1ca-c5039dca6835","element-6066-11e4-a52e-4f735466cecf":"f47cd5d9-f43c-43d8-b1ca-c5039dca6835"},{"ELEMENT":"2cb9ef77-28e6-4226-9e9c-3388cf0aef0a","element-6066-11e4-a52e-4f735466cecf":"2cb9ef77-28e6-4226-9e9c-3388cf0aef0a"},{"ELEMENT":"8fd4d7ef-5544-4be0-82fa-006b0a8e3186","element-6066-11e4-a52e-4f735466cecf":"8fd4d7ef-5544-4be0-82fa-006b0a8e3186"},{"ELEMENT":"d4c3ae59-20bb-4be7-a0e3-eadd88468d18","element-6066-11e4-a52e-4f735466cecf":"d4c3ae59-20bb-4be7-a0e3-eadd88468d18"}]}[\n]"
17:33:09.016 DEBUG - http-outgoing-2 << "[\r][\n]"
17:33:09.016 DEBUG - http-outgoing-2 << HTTP/1.1 200 OK
17:33:09.017 DEBUG - http-outgoing-2 << Content-Length: 1482
17:33:09.017 DEBUG - http-outgoing-2 << Content-Type: application/json; charset=UTF-8
17:33:09.017 DEBUG - http-outgoing-2 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.018 DEBUG - http-outgoing-2 << Accept-Ranges: bytes
17:33:09.018 DEBUG - http-outgoing-2 << Connection: close
17:33:09.019 DEBUG - http-outgoing-2: Close connection
17:33:09.019 DEBUG - Connection discarded
17:33:09.020 DEBUG - Connection released: [id: 2][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.024 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, findElements {using=xpath, value=//option}]
17:33:09.065 INFO - Done: [find elements: By.xpath: //option]
17:33:09.066 DEBUG - Finished: POST /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/elements
17:33:09.131 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/0/text
17:33:09.132 INFO - Executing: [get text: 0 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.134 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=64187086-213c-45cd-b6ac-308109712ade}]
17:33:09.138 DEBUG - CookieSpec selected: default
17:33:09.139 DEBUG - Auth cache not set in the context
17:33:09.139 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.139 DEBUG - Connection leased: [id: 3][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.140 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.140 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.141 DEBUG - Connection established 127.0.0.1:58246<->127.0.0.1:2311
17:33:09.141 DEBUG - http-outgoing-3: set socket timeout to 10800000
17:33:09.142 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/64187086-213c-45cd-b6ac-308109712ade/text HTTP/1.1
17:33:09.142 DEBUG - Target auth state: UNCHALLENGED
17:33:09.142 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.143 DEBUG - http-outgoing-3 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/64187086-213c-45cd-b6ac-308109712ade/text HTTP/1.1
17:33:09.143 DEBUG - http-outgoing-3 >> Cache-Control: no-cache
17:33:09.143 DEBUG - http-outgoing-3 >> Host: localhost:2311
17:33:09.143 DEBUG - http-outgoing-3 >> Connection: Keep-Alive
17:33:09.144 DEBUG - http-outgoing-3 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.144 DEBUG - http-outgoing-3 >> Accept-Encoding: gzip,deflate
17:33:09.144 DEBUG - http-outgoing-3 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/64187086-213c-45cd-b6ac-308109712ade/text HTTP/1.1[\r][\n]"
17:33:09.145 DEBUG - http-outgoing-3 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.145 DEBUG - http-outgoing-3 >> "Host: localhost:2311[\r][\n]"
17:33:09.145 DEBUG - http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.145 DEBUG - http-outgoing-3 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.146 DEBUG - http-outgoing-3 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.146 DEBUG - http-outgoing-3 >> "[\r][\n]"
17:33:09.159 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/6/text
17:33:09.160 INFO - Executing: [get text: 6 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.162 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/2/text
17:33:09.163 INFO - Executing: [get text: 2 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.165 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/5/text
17:33:09.166 INFO - Executing: [get text: 5 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.169 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/1/text
17:33:09.170 INFO - Executing: [get text: 1 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.175 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/3/text
17:33:09.178 INFO - Executing: [get text: 3 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.180 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/4/text
17:33:09.182 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/9/text
17:33:09.182 INFO - Executing: [get text: 4 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.183 INFO - Executing: [get text: 9 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.184 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/7/text
17:33:09.185 INFO - Executing: [get text: 7 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.185 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/10/text
17:33:09.188 DEBUG - Handling: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/8/text
17:33:09.188 INFO - Executing: [get text: 8 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.189 INFO - Executing: [get text: 10 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]])
17:33:09.234 DEBUG - http-outgoing-3 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.235 DEBUG - http-outgoing-3 << "Content-Length: 78[\r][\n]"
17:33:09.235 DEBUG - http-outgoing-3 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.235 DEBUG - http-outgoing-3 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.236 DEBUG - http-outgoing-3 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.236 DEBUG - http-outgoing-3 << "Connection: close[\r][\n]"
17:33:09.236 DEBUG - http-outgoing-3 << "[\r][\n]"
17:33:09.237 DEBUG - http-outgoing-3 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"All"}[\n]"
17:33:09.237 DEBUG - http-outgoing-3 << "[\r][\n]"
17:33:09.237 DEBUG - http-outgoing-3 << HTTP/1.1 200 OK
17:33:09.238 DEBUG - http-outgoing-3 << Content-Length: 78
17:33:09.238 DEBUG - http-outgoing-3 << Content-Type: application/json; charset=UTF-8
17:33:09.238 DEBUG - http-outgoing-3 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.238 DEBUG - http-outgoing-3 << Accept-Ranges: bytes
17:33:09.239 DEBUG - http-outgoing-3 << Connection: close
17:33:09.239 DEBUG - http-outgoing-3: Close connection
17:33:09.240 DEBUG - Connection discarded
17:33:09.240 DEBUG - Connection released: [id: 3][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.242 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=64187086-213c-45cd-b6ac-308109712ade}]
17:33:09.243 INFO - Done: [get text: 0 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.243 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=9acbe05b-0a1b-4ea6-987c-518ef58482b3}]
17:33:09.243 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/0/text
17:33:09.245 DEBUG - CookieSpec selected: default
17:33:09.245 DEBUG - Auth cache not set in the context
17:33:09.245 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.246 DEBUG - Connection leased: [id: 4][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.247 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.249 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.250 DEBUG - Connection established 127.0.0.1:58247<->127.0.0.1:2311
17:33:09.251 DEBUG - http-outgoing-4: set socket timeout to 10800000
17:33:09.251 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/9acbe05b-0a1b-4ea6-987c-518ef58482b3/text HTTP/1.1
17:33:09.251 DEBUG - Target auth state: UNCHALLENGED
17:33:09.251 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.253 DEBUG - http-outgoing-4 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/9acbe05b-0a1b-4ea6-987c-518ef58482b3/text HTTP/1.1
17:33:09.253 DEBUG - http-outgoing-4 >> Cache-Control: no-cache
17:33:09.253 DEBUG - http-outgoing-4 >> Host: localhost:2311
17:33:09.254 DEBUG - http-outgoing-4 >> Connection: Keep-Alive
17:33:09.254 DEBUG - http-outgoing-4 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.254 DEBUG - http-outgoing-4 >> Accept-Encoding: gzip,deflate
17:33:09.254 DEBUG - http-outgoing-4 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/9acbe05b-0a1b-4ea6-987c-518ef58482b3/text HTTP/1.1[\r][\n]"
17:33:09.255 DEBUG - http-outgoing-4 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.255 DEBUG - http-outgoing-4 >> "Host: localhost:2311[\r][\n]"
17:33:09.255 DEBUG - http-outgoing-4 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.256 DEBUG - http-outgoing-4 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.256 DEBUG - http-outgoing-4 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.256 DEBUG - http-outgoing-4 >> "[\r][\n]"
17:33:09.355 DEBUG - http-outgoing-4 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.356 DEBUG - http-outgoing-4 << "Content-Length: 87[\r][\n]"
17:33:09.356 DEBUG - http-outgoing-4 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.356 DEBUG - http-outgoing-4 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.356 DEBUG - http-outgoing-4 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.356 DEBUG - http-outgoing-4 << "Connection: close[\r][\n]"
17:33:09.357 DEBUG - http-outgoing-4 << "[\r][\n]"
17:33:09.357 DEBUG - http-outgoing-4 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Loss and Liq"}[\n]"
17:33:09.357 DEBUG - http-outgoing-4 << "[\r][\n]"
17:33:09.357 DEBUG - http-outgoing-4 << HTTP/1.1 200 OK
17:33:09.357 DEBUG - http-outgoing-4 << Content-Length: 87
17:33:09.357 DEBUG - http-outgoing-4 << Content-Type: application/json; charset=UTF-8
17:33:09.358 DEBUG - http-outgoing-4 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.358 DEBUG - http-outgoing-4 << Accept-Ranges: bytes
17:33:09.358 DEBUG - http-outgoing-4 << Connection: close
17:33:09.359 DEBUG - http-outgoing-4: Close connection
17:33:09.359 DEBUG - Connection discarded
17:33:09.359 DEBUG - Connection released: [id: 4][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.360 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=9acbe05b-0a1b-4ea6-987c-518ef58482b3}]
17:33:09.360 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=6b6198e8-fbc0-4d29-bffe-40da9e1f514b}]
17:33:09.360 INFO - Done: [get text: 6 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.361 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/6/text
17:33:09.361 DEBUG - CookieSpec selected: default
17:33:09.361 DEBUG - Auth cache not set in the context
17:33:09.361 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.362 DEBUG - Connection leased: [id: 5][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.362 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.362 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.363 DEBUG - Connection established 127.0.0.1:58248<->127.0.0.1:2311
17:33:09.364 DEBUG - http-outgoing-5: set socket timeout to 10800000
17:33:09.364 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/6b6198e8-fbc0-4d29-bffe-40da9e1f514b/text HTTP/1.1
17:33:09.364 DEBUG - Target auth state: UNCHALLENGED
17:33:09.364 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.364 DEBUG - http-outgoing-5 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/6b6198e8-fbc0-4d29-bffe-40da9e1f514b/text HTTP/1.1
17:33:09.364 DEBUG - http-outgoing-5 >> Cache-Control: no-cache
17:33:09.365 DEBUG - http-outgoing-5 >> Host: localhost:2311
17:33:09.365 DEBUG - http-outgoing-5 >> Connection: Keep-Alive
17:33:09.365 DEBUG - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.365 DEBUG - http-outgoing-5 >> Accept-Encoding: gzip,deflate
17:33:09.365 DEBUG - http-outgoing-5 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/6b6198e8-fbc0-4d29-bffe-40da9e1f514b/text HTTP/1.1[\r][\n]"
17:33:09.365 DEBUG - http-outgoing-5 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.366 DEBUG - http-outgoing-5 >> "Host: localhost:2311[\r][\n]"
17:33:09.366 DEBUG - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.366 DEBUG - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.366 DEBUG - http-outgoing-5 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.366 DEBUG - http-outgoing-5 >> "[\r][\n]"
17:33:09.442 DEBUG - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.443 DEBUG - http-outgoing-5 << "Content-Length: 79[\r][\n]"
17:33:09.443 DEBUG - http-outgoing-5 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.443 DEBUG - http-outgoing-5 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.443 DEBUG - http-outgoing-5 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.444 DEBUG - http-outgoing-5 << "Connection: close[\r][\n]"
17:33:09.444 DEBUG - http-outgoing-5 << "[\r][\n]"
17:33:09.444 DEBUG - http-outgoing-5 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Loan"}[\n]"
17:33:09.445 DEBUG - http-outgoing-5 << "[\r][\n]"
17:33:09.445 DEBUG - http-outgoing-5 << HTTP/1.1 200 OK
17:33:09.445 DEBUG - http-outgoing-5 << Content-Length: 79
17:33:09.445 DEBUG - http-outgoing-5 << Content-Type: application/json; charset=UTF-8
17:33:09.446 DEBUG - http-outgoing-5 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.446 DEBUG - http-outgoing-5 << Accept-Ranges: bytes
17:33:09.446 DEBUG - http-outgoing-5 << Connection: close
17:33:09.447 DEBUG - http-outgoing-5: Close connection
17:33:09.448 DEBUG - Connection discarded
17:33:09.448 DEBUG - Connection released: [id: 5][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.449 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=6b6198e8-fbc0-4d29-bffe-40da9e1f514b}]
17:33:09.449 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=4f919eb1-deb2-4802-ba51-99b74161bc7a}]
17:33:09.449 INFO - Done: [get text: 2 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.450 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/2/text
17:33:09.451 DEBUG - CookieSpec selected: default
17:33:09.451 DEBUG - Auth cache not set in the context
17:33:09.453 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.453 DEBUG - Connection leased: [id: 6][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.453 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.454 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.455 DEBUG - Connection established 127.0.0.1:58251<->127.0.0.1:2311
17:33:09.456 DEBUG - http-outgoing-6: set socket timeout to 10800000
17:33:09.456 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/4f919eb1-deb2-4802-ba51-99b74161bc7a/text HTTP/1.1
17:33:09.456 DEBUG - Target auth state: UNCHALLENGED
17:33:09.457 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.457 DEBUG - http-outgoing-6 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/4f919eb1-deb2-4802-ba51-99b74161bc7a/text HTTP/1.1
17:33:09.457 DEBUG - http-outgoing-6 >> Cache-Control: no-cache
17:33:09.458 DEBUG - http-outgoing-6 >> Host: localhost:2311
17:33:09.458 DEBUG - http-outgoing-6 >> Connection: Keep-Alive
17:33:09.458 DEBUG - http-outgoing-6 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.459 DEBUG - http-outgoing-6 >> Accept-Encoding: gzip,deflate
17:33:09.459 DEBUG - http-outgoing-6 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/4f919eb1-deb2-4802-ba51-99b74161bc7a/text HTTP/1.1[\r][\n]"
17:33:09.459 DEBUG - http-outgoing-6 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.459 DEBUG - http-outgoing-6 >> "Host: localhost:2311[\r][\n]"
17:33:09.460 DEBUG - http-outgoing-6 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.460 DEBUG - http-outgoing-6 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.460 DEBUG - http-outgoing-6 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.461 DEBUG - http-outgoing-6 >> "[\r][\n]"
17:33:09.538 DEBUG - http-outgoing-6 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.539 DEBUG - http-outgoing-6 << "Content-Length: 92[\r][\n]"
17:33:09.539 DEBUG - http-outgoing-6 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.539 DEBUG - http-outgoing-6 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.540 DEBUG - http-outgoing-6 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.540 DEBUG - http-outgoing-6 << "Connection: close[\r][\n]"
17:33:09.540 DEBUG - http-outgoing-6 << "[\r][\n]"
17:33:09.540 DEBUG - http-outgoing-6 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Performance - OTS"}[\n]"
17:33:09.540 DEBUG - http-outgoing-6 << "[\r][\n]"
17:33:09.541 DEBUG - http-outgoing-6 << HTTP/1.1 200 OK
17:33:09.541 DEBUG - http-outgoing-6 << Content-Length: 92
17:33:09.541 DEBUG - http-outgoing-6 << Content-Type: application/json; charset=UTF-8
17:33:09.541 DEBUG - http-outgoing-6 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.541 DEBUG - http-outgoing-6 << Accept-Ranges: bytes
17:33:09.542 DEBUG - http-outgoing-6 << Connection: close
17:33:09.542 DEBUG - http-outgoing-6: Close connection
17:33:09.543 DEBUG - Connection discarded
17:33:09.543 DEBUG - Connection released: [id: 6][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.544 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=4f919eb1-deb2-4802-ba51-99b74161bc7a}]
17:33:09.544 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=95b06871-e5a1-4a7d-abc6-ac6be78a32d0}]
17:33:09.544 INFO - Done: [get text: 5 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.544 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/5/text
17:33:09.544 DEBUG - CookieSpec selected: default
17:33:09.544 DEBUG - Auth cache not set in the context
17:33:09.545 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.545 DEBUG - Connection leased: [id: 7][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.545 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.546 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.546 DEBUG - Connection established 127.0.0.1:58252<->127.0.0.1:2311
17:33:09.546 DEBUG - http-outgoing-7: set socket timeout to 10800000
17:33:09.546 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/95b06871-e5a1-4a7d-abc6-ac6be78a32d0/text HTTP/1.1
17:33:09.546 DEBUG - Target auth state: UNCHALLENGED
17:33:09.546 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.547 DEBUG - http-outgoing-7 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/95b06871-e5a1-4a7d-abc6-ac6be78a32d0/text HTTP/1.1
17:33:09.547 DEBUG - http-outgoing-7 >> Cache-Control: no-cache
17:33:09.547 DEBUG - http-outgoing-7 >> Host: localhost:2311
17:33:09.547 DEBUG - http-outgoing-7 >> Connection: Keep-Alive
17:33:09.547 DEBUG - http-outgoing-7 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.547 DEBUG - http-outgoing-7 >> Accept-Encoding: gzip,deflate
17:33:09.547 DEBUG - http-outgoing-7 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/95b06871-e5a1-4a7d-abc6-ac6be78a32d0/text HTTP/1.1[\r][\n]"
17:33:09.547 DEBUG - http-outgoing-7 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.548 DEBUG - http-outgoing-7 >> "Host: localhost:2311[\r][\n]"
17:33:09.548 DEBUG - http-outgoing-7 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.548 DEBUG - http-outgoing-7 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.548 DEBUG - http-outgoing-7 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.548 DEBUG - http-outgoing-7 >> "[\r][\n]"
17:33:09.635 DEBUG - http-outgoing-7 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.636 DEBUG - http-outgoing-7 << "Content-Length: 79[\r][\n]"
17:33:09.636 DEBUG - http-outgoing-7 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.636 DEBUG - http-outgoing-7 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.636 DEBUG - http-outgoing-7 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.636 DEBUG - http-outgoing-7 << "Connection: close[\r][\n]"
17:33:09.637 DEBUG - http-outgoing-7 << "[\r][\n]"
17:33:09.637 DEBUG - http-outgoing-7 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Deal"}[\n]"
17:33:09.637 DEBUG - http-outgoing-7 << "[\r][\n]"
17:33:09.637 DEBUG - http-outgoing-7 << HTTP/1.1 200 OK
17:33:09.637 DEBUG - http-outgoing-7 << Content-Length: 79
17:33:09.637 DEBUG - http-outgoing-7 << Content-Type: application/json; charset=UTF-8
17:33:09.638 DEBUG - http-outgoing-7 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.638 DEBUG - http-outgoing-7 << Accept-Ranges: bytes
17:33:09.638 DEBUG - http-outgoing-7 << Connection: close
17:33:09.638 DEBUG - http-outgoing-7: Close connection
17:33:09.639 DEBUG - Connection discarded
17:33:09.639 DEBUG - Connection released: [id: 7][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.640 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=95b06871-e5a1-4a7d-abc6-ac6be78a32d0}]
17:33:09.640 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=bb2cf735-809b-4bab-99bd-27c559319d89}]
17:33:09.641 DEBUG - CookieSpec selected: default
17:33:09.641 INFO - Done: [get text: 1 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.641 DEBUG - Auth cache not set in the context
17:33:09.641 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/1/text
17:33:09.641 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.642 DEBUG - Connection leased: [id: 8][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.642 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.642 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.644 DEBUG - Connection established 127.0.0.1:58253<->127.0.0.1:2311
17:33:09.644 DEBUG - http-outgoing-8: set socket timeout to 10800000
17:33:09.644 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/bb2cf735-809b-4bab-99bd-27c559319d89/text HTTP/1.1
17:33:09.645 DEBUG - Target auth state: UNCHALLENGED
17:33:09.645 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.645 DEBUG - http-outgoing-8 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/bb2cf735-809b-4bab-99bd-27c559319d89/text HTTP/1.1
17:33:09.645 DEBUG - http-outgoing-8 >> Cache-Control: no-cache
17:33:09.645 DEBUG - http-outgoing-8 >> Host: localhost:2311
17:33:09.645 DEBUG - http-outgoing-8 >> Connection: Keep-Alive
17:33:09.646 DEBUG - http-outgoing-8 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.646 DEBUG - http-outgoing-8 >> Accept-Encoding: gzip,deflate
17:33:09.646 DEBUG - http-outgoing-8 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/bb2cf735-809b-4bab-99bd-27c559319d89/text HTTP/1.1[\r][\n]"
17:33:09.646 DEBUG - http-outgoing-8 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.646 DEBUG - http-outgoing-8 >> "Host: localhost:2311[\r][\n]"
17:33:09.646 DEBUG - http-outgoing-8 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.647 DEBUG - http-outgoing-8 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.647 DEBUG - http-outgoing-8 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.647 DEBUG - http-outgoing-8 >> "[\r][\n]"
17:33:09.720 DEBUG - http-outgoing-8 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.720 DEBUG - http-outgoing-8 << "Content-Length: 86[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "Connection: close[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Performance"}[\n]"
17:33:09.721 DEBUG - http-outgoing-8 << "[\r][\n]"
17:33:09.721 DEBUG - http-outgoing-8 << HTTP/1.1 200 OK
17:33:09.722 DEBUG - http-outgoing-8 << Content-Length: 86
17:33:09.722 DEBUG - http-outgoing-8 << Content-Type: application/json; charset=UTF-8
17:33:09.722 DEBUG - http-outgoing-8 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.722 DEBUG - http-outgoing-8 << Accept-Ranges: bytes
17:33:09.722 DEBUG - http-outgoing-8 << Connection: close
17:33:09.722 DEBUG - http-outgoing-8: Close connection
17:33:09.722 DEBUG - Connection discarded
17:33:09.723 DEBUG - Connection released: [id: 8][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.723 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=bb2cf735-809b-4bab-99bd-27c559319d89}]
17:33:09.723 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=0bd497ce-690a-4fa6-9965-37db302eb0e1}]
17:33:09.723 INFO - Done: [get text: 3 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.724 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/3/text
17:33:09.724 DEBUG - CookieSpec selected: default
17:33:09.724 DEBUG - Auth cache not set in the context
17:33:09.724 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.725 DEBUG - Connection leased: [id: 9][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.725 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.725 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.726 DEBUG - Connection established 127.0.0.1:58254<->127.0.0.1:2311
17:33:09.726 DEBUG - http-outgoing-9: set socket timeout to 10800000
17:33:09.726 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/0bd497ce-690a-4fa6-9965-37db302eb0e1/text HTTP/1.1
17:33:09.726 DEBUG - Target auth state: UNCHALLENGED
17:33:09.726 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.726 DEBUG - http-outgoing-9 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/0bd497ce-690a-4fa6-9965-37db302eb0e1/text HTTP/1.1
17:33:09.726 DEBUG - http-outgoing-9 >> Cache-Control: no-cache
17:33:09.726 DEBUG - http-outgoing-9 >> Host: localhost:2311
17:33:09.726 DEBUG - http-outgoing-9 >> Connection: Keep-Alive
17:33:09.727 DEBUG - http-outgoing-9 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.727 DEBUG - http-outgoing-9 >> Accept-Encoding: gzip,deflate
17:33:09.727 DEBUG - http-outgoing-9 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/0bd497ce-690a-4fa6-9965-37db302eb0e1/text HTTP/1.1[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "Host: localhost:2311[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.727 DEBUG - http-outgoing-9 >> "[\r][\n]"
17:33:09.809 DEBUG - http-outgoing-9 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.809 DEBUG - http-outgoing-9 << "Content-Length: 92[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "Connection: close[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "[\r][\n]"
17:33:09.810 DEBUG - http-outgoing-9 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Performance - MBA"}[\n]"
17:33:09.812 DEBUG - http-outgoing-9 << "[\r][\n]"
17:33:09.812 DEBUG - http-outgoing-9 << HTTP/1.1 200 OK
17:33:09.812 DEBUG - http-outgoing-9 << Content-Length: 92
17:33:09.812 DEBUG - http-outgoing-9 << Content-Type: application/json; charset=UTF-8
17:33:09.812 DEBUG - http-outgoing-9 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.813 DEBUG - http-outgoing-9 << Accept-Ranges: bytes
17:33:09.813 DEBUG - http-outgoing-9 << Connection: close
17:33:09.813 DEBUG - http-outgoing-9: Close connection
17:33:09.813 DEBUG - Connection discarded
17:33:09.814 DEBUG - Connection released: [id: 9][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.814 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=0bd497ce-690a-4fa6-9965-37db302eb0e1}]
17:33:09.815 INFO - Done: [get text: 4 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.815 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=8fd4d7ef-5544-4be0-82fa-006b0a8e3186}]
17:33:09.815 DEBUG - CookieSpec selected: default
17:33:09.815 DEBUG - Auth cache not set in the context
17:33:09.815 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/4/text
17:33:09.816 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.816 DEBUG - Connection leased: [id: 10][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.816 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.816 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.817 DEBUG - Connection established 127.0.0.1:58255<->127.0.0.1:2311
17:33:09.817 DEBUG - http-outgoing-10: set socket timeout to 10800000
17:33:09.817 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/8fd4d7ef-5544-4be0-82fa-006b0a8e3186/text HTTP/1.1
17:33:09.817 DEBUG - Target auth state: UNCHALLENGED
17:33:09.817 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.817 DEBUG - http-outgoing-10 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/8fd4d7ef-5544-4be0-82fa-006b0a8e3186/text HTTP/1.1
17:33:09.817 DEBUG - http-outgoing-10 >> Cache-Control: no-cache
17:33:09.818 DEBUG - http-outgoing-10 >> Host: localhost:2311
17:33:09.818 DEBUG - http-outgoing-10 >> Connection: Keep-Alive
17:33:09.818 DEBUG - http-outgoing-10 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.818 DEBUG - http-outgoing-10 >> Accept-Encoding: gzip,deflate
17:33:09.818 DEBUG - http-outgoing-10 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/8fd4d7ef-5544-4be0-82fa-006b0a8e3186/text HTTP/1.1[\r][\n]"
17:33:09.818 DEBUG - http-outgoing-10 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.819 DEBUG - http-outgoing-10 >> "Host: localhost:2311[\r][\n]"
17:33:09.819 DEBUG - http-outgoing-10 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.819 DEBUG - http-outgoing-10 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.819 DEBUG - http-outgoing-10 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.819 DEBUG - http-outgoing-10 >> "[\r][\n]"
17:33:09.881 DEBUG - http-outgoing-10 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.881 DEBUG - http-outgoing-10 << "Content-Length: 83[\r][\n]"
17:33:09.882 DEBUG - http-outgoing-10 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.882 DEBUG - http-outgoing-10 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.882 DEBUG - http-outgoing-10 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.882 DEBUG - http-outgoing-10 << "Connection: close[\r][\n]"
17:33:09.883 DEBUG - http-outgoing-10 << "[\r][\n]"
17:33:09.883 DEBUG - http-outgoing-10 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Property"}[\n]"
17:33:09.883 DEBUG - http-outgoing-10 << "[\r][\n]"
17:33:09.884 DEBUG - http-outgoing-10 << HTTP/1.1 200 OK
17:33:09.884 DEBUG - http-outgoing-10 << Content-Length: 83
17:33:09.884 DEBUG - http-outgoing-10 << Content-Type: application/json; charset=UTF-8
17:33:09.884 DEBUG - http-outgoing-10 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.884 DEBUG - http-outgoing-10 << Accept-Ranges: bytes
17:33:09.885 DEBUG - http-outgoing-10 << Connection: close
17:33:09.885 DEBUG - http-outgoing-10: Close connection
17:33:09.886 DEBUG - Connection discarded
17:33:09.886 DEBUG - Connection released: [id: 10][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.887 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=8fd4d7ef-5544-4be0-82fa-006b0a8e3186}]
17:33:09.888 INFO - Done: [get text: 9 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.889 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/9/text
17:33:09.889 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=f47cd5d9-f43c-43d8-b1ca-c5039dca6835}]
17:33:09.891 DEBUG - CookieSpec selected: default
17:33:09.892 DEBUG - Auth cache not set in the context
17:33:09.892 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.892 DEBUG - Connection leased: [id: 11][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.892 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.893 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.894 DEBUG - Connection established 127.0.0.1:58256<->127.0.0.1:2311
17:33:09.894 DEBUG - http-outgoing-11: set socket timeout to 10800000
17:33:09.894 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/f47cd5d9-f43c-43d8-b1ca-c5039dca6835/text HTTP/1.1
17:33:09.895 DEBUG - Target auth state: UNCHALLENGED
17:33:09.895 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.895 DEBUG - http-outgoing-11 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/f47cd5d9-f43c-43d8-b1ca-c5039dca6835/text HTTP/1.1
17:33:09.895 DEBUG - http-outgoing-11 >> Cache-Control: no-cache
17:33:09.896 DEBUG - http-outgoing-11 >> Host: localhost:2311
17:33:09.896 DEBUG - http-outgoing-11 >> Connection: Keep-Alive
17:33:09.896 DEBUG - http-outgoing-11 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.896 DEBUG - http-outgoing-11 >> Accept-Encoding: gzip,deflate
17:33:09.896 DEBUG - http-outgoing-11 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/f47cd5d9-f43c-43d8-b1ca-c5039dca6835/text HTTP/1.1[\r][\n]"
17:33:09.896 DEBUG - http-outgoing-11 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.897 DEBUG - http-outgoing-11 >> "Host: localhost:2311[\r][\n]"
17:33:09.898 DEBUG - http-outgoing-11 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.898 DEBUG - http-outgoing-11 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.898 DEBUG - http-outgoing-11 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.898 DEBUG - http-outgoing-11 >> "[\r][\n]"
17:33:09.946 DEBUG - http-outgoing-11 << "HTTP/1.1 200 OK[\r][\n]"
17:33:09.946 DEBUG - http-outgoing-11 << "Content-Length: 86[\r][\n]"
17:33:09.946 DEBUG - http-outgoing-11 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:09.947 DEBUG - http-outgoing-11 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:09.947 DEBUG - http-outgoing-11 << "Accept-Ranges: bytes[\r][\n]"
17:33:09.947 DEBUG - http-outgoing-11 << "Connection: close[\r][\n]"
17:33:09.947 DEBUG - http-outgoing-11 << "[\r][\n]"
17:33:09.948 DEBUG - http-outgoing-11 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Prepayments"}[\n]"
17:33:09.948 DEBUG - http-outgoing-11 << "[\r][\n]"
17:33:09.948 DEBUG - http-outgoing-11 << HTTP/1.1 200 OK
17:33:09.948 DEBUG - http-outgoing-11 << Content-Length: 86
17:33:09.948 DEBUG - http-outgoing-11 << Content-Type: application/json; charset=UTF-8
17:33:09.948 DEBUG - http-outgoing-11 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:09.948 DEBUG - http-outgoing-11 << Accept-Ranges: bytes
17:33:09.949 DEBUG - http-outgoing-11 << Connection: close
17:33:09.949 DEBUG - http-outgoing-11: Close connection
17:33:09.949 DEBUG - Connection discarded
17:33:09.949 DEBUG - Connection released: [id: 11][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.951 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=f47cd5d9-f43c-43d8-b1ca-c5039dca6835}]
17:33:09.951 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=2cb9ef77-28e6-4226-9e9c-3388cf0aef0a}]
17:33:09.951 DEBUG - CookieSpec selected: default
17:33:09.952 DEBUG - Auth cache not set in the context
17:33:09.952 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:09.952 DEBUG - Connection leased: [id: 12][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:09.952 DEBUG - Opening connection {}->http://localhost:2311
17:33:09.952 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:09.952 DEBUG - Connection established 127.0.0.1:58257<->127.0.0.1:2311
17:33:09.953 DEBUG - http-outgoing-12: set socket timeout to 10800000
17:33:09.953 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/2cb9ef77-28e6-4226-9e9c-3388cf0aef0a/text HTTP/1.1
17:33:09.953 DEBUG - Target auth state: UNCHALLENGED
17:33:09.953 DEBUG - Proxy auth state: UNCHALLENGED
17:33:09.953 DEBUG - http-outgoing-12 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/2cb9ef77-28e6-4226-9e9c-3388cf0aef0a/text HTTP/1.1
17:33:09.953 DEBUG - http-outgoing-12 >> Cache-Control: no-cache
17:33:09.953 DEBUG - http-outgoing-12 >> Host: localhost:2311
17:33:09.953 DEBUG - http-outgoing-12 >> Connection: Keep-Alive
17:33:09.953 DEBUG - http-outgoing-12 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:09.953 DEBUG - http-outgoing-12 >> Accept-Encoding: gzip,deflate
17:33:09.954 DEBUG - http-outgoing-12 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/2cb9ef77-28e6-4226-9e9c-3388cf0aef0a/text HTTP/1.1[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "Cache-Control: no-cache[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "Host: localhost:2311[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "Connection: Keep-Alive[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:09.954 DEBUG - http-outgoing-12 >> "[\r][\n]"
17:33:09.954 INFO - Done: [get text: 7 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:09.955 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/7/text
17:33:10.033 DEBUG - http-outgoing-12 << "HTTP/1.1 200 OK[\r][\n]"
17:33:10.034 DEBUG - http-outgoing-12 << "Content-Length: 88[\r][\n]"
17:33:10.034 DEBUG - http-outgoing-12 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:10.034 DEBUG - http-outgoing-12 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:10.035 DEBUG - http-outgoing-12 << "Accept-Ranges: bytes[\r][\n]"
17:33:10.035 DEBUG - http-outgoing-12 << "Connection: close[\r][\n]"
17:33:10.035 DEBUG - http-outgoing-12 << "[\r][\n]"
17:33:10.036 DEBUG - http-outgoing-12 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Modifications"}[\n]"
17:33:10.036 DEBUG - http-outgoing-12 << "[\r][\n]"
17:33:10.036 DEBUG - http-outgoing-12 << HTTP/1.1 200 OK
17:33:10.036 DEBUG - http-outgoing-12 << Content-Length: 88
17:33:10.037 DEBUG - http-outgoing-12 << Content-Type: application/json; charset=UTF-8
17:33:10.037 DEBUG - http-outgoing-12 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:10.037 DEBUG - http-outgoing-12 << Accept-Ranges: bytes
17:33:10.037 DEBUG - http-outgoing-12 << Connection: close
17:33:10.038 DEBUG - http-outgoing-12: Close connection
17:33:10.038 DEBUG - Connection discarded
17:33:10.039 DEBUG - Connection released: [id: 12][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:10.040 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=2cb9ef77-28e6-4226-9e9c-3388cf0aef0a}]
17:33:10.040 DEBUG - Executing: getElementText [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=d4c3ae59-20bb-4be7-a0e3-eadd88468d18}]
17:33:10.041 INFO - Done: [get text: 8 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:10.041 DEBUG - CookieSpec selected: default
17:33:10.042 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/8/text
17:33:10.042 DEBUG - Auth cache not set in the context
17:33:10.042 DEBUG - Connection request: [route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:10.043 DEBUG - Connection leased: [id: 13][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
17:33:10.044 DEBUG - Opening connection {}->http://localhost:2311
17:33:10.044 DEBUG - Connecting to localhost/127.0.0.1:2311
17:33:10.045 DEBUG - Connection established 127.0.0.1:58258<->127.0.0.1:2311
17:33:10.046 DEBUG - http-outgoing-13: set socket timeout to 10800000
17:33:10.046 DEBUG - Executing request GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/d4c3ae59-20bb-4be7-a0e3-eadd88468d18/text HTTP/1.1
17:33:10.046 DEBUG - Target auth state: UNCHALLENGED
17:33:10.046 DEBUG - Proxy auth state: UNCHALLENGED
17:33:10.046 DEBUG - http-outgoing-13 >> GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/d4c3ae59-20bb-4be7-a0e3-eadd88468d18/text HTTP/1.1
17:33:10.047 DEBUG - http-outgoing-13 >> Cache-Control: no-cache
17:33:10.047 DEBUG - http-outgoing-13 >> Host: localhost:2311
17:33:10.047 DEBUG - http-outgoing-13 >> Connection: Keep-Alive
17:33:10.047 DEBUG - http-outgoing-13 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
17:33:10.048 DEBUG - http-outgoing-13 >> Accept-Encoding: gzip,deflate
17:33:10.048 DEBUG - http-outgoing-13 >> "GET /session/a8506f2f-6219-4e84-bf44-d87207330fe0/element/d4c3ae59-20bb-4be7-a0e3-eadd88468d18/text HTTP/1.1[\r][\n]"
17:33:10.048 DEBUG - http-outgoing-13 >> "Cache-Control: no-cache[\r][\n]"
17:33:10.048 DEBUG - http-outgoing-13 >> "Host: localhost:2311[\r][\n]"
17:33:10.049 DEBUG - http-outgoing-13 >> "Connection: Keep-Alive[\r][\n]"
17:33:10.049 DEBUG - http-outgoing-13 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
17:33:10.049 DEBUG - http-outgoing-13 >> "Accept-Encoding: gzip,deflate[\r][\n]"
17:33:10.049 DEBUG - http-outgoing-13 >> "[\r][\n]"
17:33:10.136 DEBUG - http-outgoing-13 << "HTTP/1.1 200 OK[\r][\n]"
17:33:10.136 DEBUG - http-outgoing-13 << "Content-Length: 92[\r][\n]"
17:33:10.137 DEBUG - http-outgoing-13 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
17:33:10.137 DEBUG - http-outgoing-13 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
17:33:10.137 DEBUG - http-outgoing-13 << "Accept-Ranges: bytes[\r][\n]"
17:33:10.137 DEBUG - http-outgoing-13 << "Connection: close[\r][\n]"
17:33:10.137 DEBUG - http-outgoing-13 << "[\r][\n]"
17:33:10.138 DEBUG - http-outgoing-13 << "{"sessionId":"a8506f2f-6219-4e84-bf44-d87207330fe0","status":0,"value":"Servicer Advances"}[\n]"
17:33:10.138 DEBUG - http-outgoing-13 << "[\r][\n]"
17:33:10.138 DEBUG - http-outgoing-13 << HTTP/1.1 200 OK
17:33:10.138 DEBUG - http-outgoing-13 << Content-Length: 92
17:33:10.139 DEBUG - http-outgoing-13 << Content-Type: application/json; charset=UTF-8
17:33:10.139 DEBUG - http-outgoing-13 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
17:33:10.139 DEBUG - http-outgoing-13 << Accept-Ranges: bytes
17:33:10.139 DEBUG - http-outgoing-13 << Connection: close
17:33:10.140 DEBUG - http-outgoing-13: Close connection
17:33:10.140 DEBUG - Connection discarded
17:33:10.141 DEBUG - Connection released: [id: 13][route: {}->http://localhost:2311][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
17:33:10.142 DEBUG - Executed: [a8506f2f-6219-4e84-bf44-d87207330fe0, getElementText {id=d4c3ae59-20bb-4be7-a0e3-eadd88468d18}]
17:33:10.148 INFO - Done: [get text: 10 [[InternetExplorerDriver: internet explorer on WINDOWS (a8506f2f-6219-4e84-bf44-d87207330fe0)] -> xpath: //option]]
17:33:10.148 DEBUG - Finished: GET /session/5f1d2b2e-ced4-44a2-9a45-01817bced88d/element/10/text
18:01:09.480 INFO - Selenium build info: version: '3.5.0', revision: '8def36e068'
18:01:09.481 INFO - Launching a standalone Selenium Server
2018-04-05 18:01:09.521:INFO::main: Logging initialized @486ms to org.seleniumhq.jetty9.util.log.StdErrLog
18:01:09.617 INFO - Driver class not found: com.opera.core.systems.OperaDriver
18:01:09.656 INFO - Driver provider class org.openqa.selenium.safari.SafariDriver registration is skipped:
registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform VISTA
18:01:09.689 INFO - Using the passthrough mode handler
2018-04-05 18:01:09.721:INFO:osjs.Server:main: jetty-9.4.5.v20170502
2018-04-05 18:01:09.747:WARN:osjs.SecurityHandler:main: ServletContext@o.s.j.s.ServletContextHandler@235b8e{/,null,STARTING} has uncovered http methods for path: /
2018-04-05 18:01:09.754:INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@235b8e{/,null,AVAILABLE}
2018-04-05 18:01:09.907:INFO:osjs.AbstractConnector:main: Started ServerConnector@6d1014{HTTP/1.1,[http/1.1]}{0.0.0.0:4444}
2018-04-05 18:01:09.908:INFO:osjs.Server:main: Started @879ms
18:01:09.908 INFO - Selenium Server is up and running
2018-04-05 18:01:10.296:INFO:osjshC.ROOT:qtp27546974-9: org.openqa.selenium.remote.server.WebDriverServlet-7fa833: Initialising WebDriverServlet
18:01:10.368 INFO - Found handler: org.openqa.selenium.remote.server.commandhandler.Status@1c8b935
18:01:10.373 INFO - /status: Executing GET on /status (handler: Status)
18:01:35.274 INFO - Binding default provider to: org.openqa.selenium.chrome.ChromeDriverService
18:01:35.274 INFO - Found handler: org.openqa.selenium.remote.server.BeginSession@1b92d93
18:01:35.275 INFO - /session: Executing POST on /session (handler: BeginSession)
18:01:35.290 DEBUG - Memory-based payload for: {desiredCapabilities={browserName=internet explorer}, capabilities={alwaysMatch={browserName=internet explorer}}}
18:01:35.343 DEBUG - Found a w3c capability that matches the oss one.
18:01:35.347 INFO - Capabilities are: Capabilities {browserName=internet explorer}
18:01:35.349 INFO - Capabilities {browserName=internet explorer} matched class org.openqa.selenium.remote.server.ServicedSession$Factory (provider: org.openqa.selenium.ie.InternetExplorerDriverService)
18:01:35.349 INFO - Capabilities {browserName=internet explorer} matched class org.openqa.selenium.remote.server.ServicedSession$Factory (provider: org.openqa.selenium.chrome.ChromeDriverService)
18:01:35.403 DEBUG - Waiting for [http://localhost:18407/status]
18:01:35.407 DEBUG - Polling http://localhost:18407/status
Started InternetExplorerDriver server (32-bit)
3.4.0.0
Listening on port 18407
Only local connections are allowed
18:01:35.915 DEBUG - sun.net.www.MessageHeader@367ed05 pairs: {GET /status HTTP/1.1: null}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}
18:01:35.917 DEBUG - sun.net.www.MessageHeader@134e0726 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 167}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:36.394 DEBUG - CookieSpec selected: default
18:01:36.403 DEBUG - Auth cache not set in the context
18:01:36.404 DEBUG - Connection request: [route: {}->http://localhost:18407][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
18:01:36.418 DEBUG - Connection leased: [id: 0][route: {}->http://localhost:18407][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
18:01:36.420 DEBUG - Opening connection {}->http://localhost:18407
18:01:36.421 DEBUG - Connecting to localhost/127.0.0.1:18407
18:01:36.421 DEBUG - Connection established 127.0.0.1:58266<->127.0.0.1:18407
18:01:36.421 DEBUG - http-outgoing-0: set socket timeout to 10800000
18:01:36.421 DEBUG - Executing request POST /session HTTP/1.1
18:01:36.421 DEBUG - Target auth state: UNCHALLENGED
18:01:36.422 DEBUG - Proxy auth state: UNCHALLENGED
18:01:36.423 DEBUG - http-outgoing-0 >> POST /session HTTP/1.1
18:01:36.423 DEBUG - http-outgoing-0 >> Content-Type: application/json; charset=utf-8
18:01:36.423 DEBUG - http-outgoing-0 >> Content-Length: 126
18:01:36.423 DEBUG - http-outgoing-0 >> Host: localhost:18407
18:01:36.423 DEBUG - http-outgoing-0 >> Connection: Keep-Alive
18:01:36.423 DEBUG - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
18:01:36.423 DEBUG - http-outgoing-0 >> Accept-Encoding: gzip,deflate
18:01:36.425 DEBUG - http-outgoing-0 >> "POST /session HTTP/1.1[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "Content-Type: application/json; charset=utf-8[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "Content-Length: 126[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "Host: localhost:18407[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "[\r][\n]"
18:01:36.425 DEBUG - http-outgoing-0 >> "{"desiredCapabilities":{"browserName":"internet explorer"},"capabilities":{"alwaysMatch":{"browserName":"internet explorer"}}}"
18:01:37.970 DEBUG - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
18:01:37.971 DEBUG - http-outgoing-0 << "Content-Length: 763[\r][\n]"
18:01:37.971 DEBUG - http-outgoing-0 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
18:01:37.971 DEBUG - http-outgoing-0 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
18:01:37.972 DEBUG - http-outgoing-0 << "Accept-Ranges: bytes[\r][\n]"
18:01:37.972 DEBUG - http-outgoing-0 << "Connection: close[\r][\n]"
18:01:37.972 DEBUG - http-outgoing-0 << "[\r][\n]"
18:01:37.972 DEBUG - http-outgoing-0 << "{"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":{"browserName":"internet explorer","javascriptEnabled":true,"pageLoadStrategy":"normal","platform":"WINDOWS","se:ieOptions":{"browserAttachTimeout":0,"elementScrollBehavior":0,"enableElementCacheCleanup":true,"enablePersistentHover":true,"ie.browserCommandLineSwitches":"","ie.enableFullPageScreenshot":true,"ie.ensureCleanSession":false,"ie.fileUploadDialogTimeout":3000,"ie.forceCreateProcessApi":false,"ie.forceShellWindowsApi":false,"ie.useLegacyFileUploadDialogHandling":false,"ignoreProtectedModeSettings":false,"ignoreZoomSetting":false,"initialBrowserUrl":"http://localhost:18407/","nativeEvents":true,"requireWindowFocus":false},"unexpectedAlertBehaviour":"dismiss","version":"11"}}[\n]"
18:01:37.973 DEBUG - http-outgoing-0 << "[\r][\n]"
18:01:37.981 DEBUG - http-outgoing-0 << HTTP/1.1 200 OK
18:01:37.981 DEBUG - http-outgoing-0 << Content-Length: 763
18:01:37.982 DEBUG - http-outgoing-0 << Content-Type: application/json; charset=UTF-8
18:01:37.982 DEBUG - http-outgoing-0 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
18:01:37.982 DEBUG - http-outgoing-0 << Accept-Ranges: bytes
18:01:37.982 DEBUG - http-outgoing-0 << Connection: close
18:01:37.992 DEBUG - http-outgoing-0: Close connection
18:01:37.992 DEBUG - Connection discarded
18:01:37.993 DEBUG - Connection released: [id: 0][route: {}->http://localhost:18407][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
18:01:38.109 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.110 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing POST on /session/eab1be89-ade3-4530-be66-146be3118440/url (handler: ServicedSession)
18:01:38.122 INFO - To upstream: {"url":"http://****masked fqdn****/test.html"}
18:01:38.123 DEBUG - sun.net.www.MessageHeader@180736d9 pairs: {POST /session/eab1be89-ade3-4530-be66-146be3118440/url HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}{Content-Length: 64}
18:01:38.616 DEBUG - sun.net.www.MessageHeader@27971f6 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 77}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:38.621 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":null}
18:01:38.630 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.631 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing POST on /session/eab1be89-ade3-4530-be66-146be3118440/elements (handler: ServicedSession)
18:01:38.635 INFO - To upstream: {"using":"xpath","value":"//option"}
18:01:38.635 DEBUG - sun.net.www.MessageHeader@19f27049 pairs: {POST /session/eab1be89-ade3-4530-be66-146be3118440/elements HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}{Content-Length: 36}
18:01:38.793 DEBUG - sun.net.www.MessageHeader@1e37f3c6 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 1482}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:38.793 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":[{"ELEMENT":"335bd25a-c66e-47e1-bfd6-57234404ee72","element-6066-11e4-a52e-4f735466cecf":"335bd25a-c66e-47e1-bfd6-57234404ee72"},{"ELEMENT":"b314a755-54e1-485e-80e4-712196a72d6b","element-6066-11e4-a52e-4f735466cecf":"b314a755-54e1-485e-80e4-712196a72d6b"},{"ELEMENT":"c148dcbd-48ba-4ec1-8e43-a9d876d7bdc2","element-6066-11e4-a52e-4f735466cecf":"c148dcbd-48ba-4ec1-8e43-a9d876d7bdc2"},{"ELEMENT":"e64fe45c-121e-46a8-9aee-b3dc7248b7ba","element-6066-11e4-a52e-4f735466cecf":"e64fe45c-121e-46a8-9aee-b3dc7248b7ba"},{"ELEMENT":"d82a6a4e-e1be-4ee6-ad1f-b58968f86454","element-6066-11e4-a52e-4f735466cecf":"d82a6a4e-e1be-4ee6-ad1f-b58968f86454"},{"ELEMENT":"27bbf355-6360-4e16-9136-12eb106601b8","element-6066-11e4-a52e-4f735466cecf":"27bbf355-6360-4e16-9136-12eb106601b8"},{"ELEMENT":"e1482d1a-c759-4991-9dc8-ba3b2bf59573","element-6066-11e4-a52e-4f735466cecf":"e1482d1a-c759-4991-9dc8-ba3b2bf59573"},{"ELEMENT":"11fac882-06db-4f49-ac19-a90532c11e80","element-6066-11e4-a52e-4f735466cecf":"11fac882-06db-4f49-ac19-a90532c11e80"},{"ELEMENT":"0efe59be-cc52-417e-b258-37dd26b1509f","element-6066-11e4-a52e-4f735466cecf":"0efe59be-cc52-417e-b258-37dd26b1509f"},{"ELEMENT":"0cd09d79-0910-4861-a4c6-c5c1a205a6f0","element-6066-11e4-a52e-4f735466cecf":"0cd09d79-0910-4861-a4c6-c5c1a205a6f0"},{"ELEMENT":"8eba32ec-2b45-460b-98b8-5cca91f3205a","element-6066-11e4-a52e-4f735466cecf":"8eba32ec-2b45-460b-98b8-5cca91f3205a"}]}
18:01:38.819 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.821 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/335bd25a-c66e-47e1-bfd6-57234404ee72/text (handler: ServicedSession)
18:01:38.822 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.823 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.823 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.825 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/b314a755-54e1-485e-80e4-712196a72d6b/text (handler: ServicedSession)
18:01:38.826 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.826 DEBUG - sun.net.www.MessageHeader@303767 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/b314a755-54e1-485e-80e4-712196a72d6b/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.827 DEBUG - sun.net.www.MessageHeader@bcc5b57 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/335bd25a-c66e-47e1-bfd6-57234404ee72/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.830 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.833 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/c148dcbd-48ba-4ec1-8e43-a9d876d7bdc2/text (handler: ServicedSession)
18:01:38.834 DEBUG - sun.net.www.MessageHeader@bf077d7 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/c148dcbd-48ba-4ec1-8e43-a9d876d7bdc2/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.837 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/e1482d1a-c759-4991-9dc8-ba3b2bf59573/text (handler: ServicedSession)
18:01:38.838 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/11fac882-06db-4f49-ac19-a90532c11e80/text (handler: ServicedSession)
18:01:38.839 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.839 DEBUG - sun.net.www.MessageHeader@5705107 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/e1482d1a-c759-4991-9dc8-ba3b2bf59573/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.848 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.845 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.844 DEBUG - sun.net.www.MessageHeader@392c47 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/11fac882-06db-4f49-ac19-a90532c11e80/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.853 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/27bbf355-6360-4e16-9136-12eb106601b8/text (handler: ServicedSession)
18:01:38.855 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.856 DEBUG - sun.net.www.MessageHeader@a73fd27 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/27bbf355-6360-4e16-9136-12eb106601b8/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.860 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/d82a6a4e-e1be-4ee6-ad1f-b58968f86454/text (handler: ServicedSession)
18:01:38.860 DEBUG - sun.net.www.MessageHeader@1bb3f807 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/d82a6a4e-e1be-4ee6-ad1f-b58968f86454/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.860 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/e64fe45c-121e-46a8-9aee-b3dc7248b7ba/text (handler: ServicedSession)
18:01:38.861 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@117763a
18:01:38.861 DEBUG - sun.net.www.MessageHeader@1d8d6a87 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/e64fe45c-121e-46a8-9aee-b3dc7248b7ba/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.863 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/0cd09d79-0910-4861-a4c6-c5c1a205a6f0/text (handler: ServicedSession)
18:01:38.863 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/0efe59be-cc52-417e-b258-37dd26b1509f/text (handler: ServicedSession)
18:01:38.863 INFO - Handler thread for session eab1be89-ade3-4530-be66-146be3118440 (internet explorer): Executing GET on /session/eab1be89-ade3-4530-be66-146be3118440/element/8eba32ec-2b45-460b-98b8-5cca91f3205a/text (handler: ServicedSession)
18:01:38.864 DEBUG - sun.net.www.MessageHeader@177b8a97 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/8eba32ec-2b45-460b-98b8-5cca91f3205a/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.864 DEBUG - sun.net.www.MessageHeader@7c05847 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/0cd09d79-0910-4861-a4c6-c5c1a205a6f0/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.865 DEBUG - sun.net.www.MessageHeader@803d077 pairs: {GET /session/eab1be89-ade3-4530-be66-146be3118440/element/0efe59be-cc52-417e-b258-37dd26b1509f/text HTTP/1.1: null}{Accept: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:18407}
18:01:38.909 DEBUG - sun.net.www.MessageHeader@11f3d636 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 79}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:38.910 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":"Deal"}
18:01:38.950 DEBUG - sun.net.www.MessageHeader@c4f4466 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 88}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:38.952 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":"Modifications"}
18:01:38.954 DEBUG - sun.net.www.MessageHeader@c463344 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.954 DEBUG - sun.net.www.MessageHeader@15414a4 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.954 DEBUG - sun.net.www.MessageHeader@17cd2c74 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.955 INFO - To downstream: Error 404: Not Found
Not Found
18:01:38.955 INFO - To downstream: Error 404: Not Found
Not Found
18:01:38.955 DEBUG - sun.net.www.MessageHeader@47dda74 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.956 INFO - To downstream: Error 404: Not Found
Not Found
18:01:38.956 INFO - To downstream: Error 404: Not Found
Not Found
18:01:38.957 DEBUG - sun.net.www.MessageHeader@bbe07b4 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.957 INFO - To downstream: Error 404: Not Found
Not Found
18:01:38.957 DEBUG - sun.net.www.MessageHeader@1b058374 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:38 GMT}{Connection: close}
18:01:38.959 INFO - To downstream: Error 404: Not Found
Not Found
18:01:39.012 DEBUG - sun.net.www.MessageHeader@60d1b66 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 88}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:39.013 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":"Modifications"}
18:01:39.065 DEBUG - sun.net.www.MessageHeader@90f5ea6 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 88}{Content-Type: application/json; charset=UTF-8}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
18:01:39.066 INFO - To downstream: {"sessionId":"eab1be89-ade3-4530-be66-146be3118440","status":0,"value":"Modifications"}
18:01:39.068 DEBUG - sun.net.www.MessageHeader@78f89a4 pairs: {null: HTTP/1.1 404 Not Found}{Content-Length: 30}{Date: Fri, 06 Apr 2018 01:01:39 GMT}{Connection: close}
18:01:39.068 INFO - To downstream: Error 404: Not Found
Not Found
14:44:46.619 INFO - Selenium build info: version: '3.5.0', revision: '8def36e068'
14:44:46.619 INFO - Launching a standalone Selenium Server
2018-04-06 14:44:46.650:INFO::main: Logging initialized @548ms to org.seleniumhq.jetty9.util.log.StdErrLog
14:44:46.775 INFO - Driver class not found: com.opera.core.systems.OperaDriver
14:44:46.822 INFO - Driver provider class org.openqa.selenium.safari.SafariDriver registration is skipped:
registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform VISTA
14:44:46.854 INFO - Using the passthrough mode handler
2018-04-06 14:44:46.885:INFO:osjs.Server:main: jetty-9.4.5.v20170502
2018-04-06 14:44:46.932:WARN:osjs.SecurityHandler:main: ServletContext@o.s.j.s.ServletContextHandler@235b8e{/,null,STARTING} has uncovered http methods for path: /
2018-04-06 14:44:46.947:INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@235b8e{/,null,AVAILABLE}
2018-04-06 14:44:47.119:INFO:osjs.AbstractConnector:main: Started ServerConnector@6d1014{HTTP/1.1,[http/1.1]}{0.0.0.0:4444}
2018-04-06 14:44:47.119:INFO:osjs.Server:main: Started @1021ms
14:44:47.119 INFO - Selenium Server is up and running
2018-04-06 14:44:47.338:INFO:osjshC.ROOT:qtp27546974-9: org.openqa.selenium.remote.server.WebDriverServlet-7fa833: Initialising WebDriverServlet
14:44:47.463 INFO - Found handler: org.openqa.selenium.remote.server.commandhandler.Status@1539f88
14:44:47.479 INFO - /status: Executing GET on /status (handler: Status)
14:44:59.322 INFO - Binding default provider to: org.openqa.selenium.chrome.ChromeDriverService
14:44:59.322 INFO - Found handler: org.openqa.selenium.remote.server.BeginSession@b8895f
14:44:59.322 INFO - /session: Executing POST on /session (handler: BeginSession)
14:44:59.354 DEBUG - Memory-based payload for: {desiredCapabilities={browserName=internet explorer, version=11, platform=WINDOWS}, requiredCapabilities={}, capabilities={desiredCapabilities={browserName=internet explorer, version=11, platform=WINDOWS}, requiredCapabilities={}, alwaysMatch={}, firstMatch=[{browserName=internet explorer}]}}
14:44:59.400 INFO - Mismatched capabilities. Creating a synthetic w3c capability.
14:44:59.400 INFO - Capabilities are: Capabilities {browserName=internet explorer, platformName=WINDOWS, version=11, platform=WINDOWS, }
14:44:59.416 INFO - Capabilities {browserName=internet explorer, platformName=WINDOWS, version=11, platform=WINDOWS, } matched class org.openqa.selenium.remote.server.ServicedSession$Factory (provider: org.openqa.selenium.ie.InternetExplorerDriverService)
14:44:59.416 INFO - Capabilities {browserName=internet explorer, platformName=WINDOWS, version=11, platform=WINDOWS, } matched class org.openqa.selenium.remote.server.ServicedSession$Factory (provider: org.openqa.selenium.chrome.ChromeDriverService)
14:44:59.463 DEBUG - Waiting for [http://localhost:31009/status]
14:44:59.463 DEBUG - Polling http://localhost:31009/status
Started InternetExplorerDriver server (32-bit)
3.5.0.0
Listening on port 31009
Only local connections are allowed
14:44:59.994 DEBUG - Polling http://localhost:31009/status
14:44:59.994 DEBUG - sun.net.www.MessageHeader@c48c615 pairs: {GET /status HTTP/1.1: null}{User-Agent: Java/1.8.0_161}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}
14:44:59.994 DEBUG - sun.net.www.MessageHeader@1c60d1d7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 141}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:00.510 DEBUG - CookieSpec selected: default
14:45:00.541 DEBUG - Auth cache not set in the context
14:45:00.541 DEBUG - Connection request: [route: {}->http://localhost:31009][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
14:45:00.572 DEBUG - Connection leased: [id: 0][route: {}->http://localhost:31009][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
14:45:00.572 DEBUG - Opening connection {}->http://localhost:31009
14:45:00.572 DEBUG - Connecting to localhost/127.0.0.1:31009
14:45:00.572 DEBUG - Connection established 127.0.0.1:59383<->127.0.0.1:31009
14:45:00.572 DEBUG - http-outgoing-0: set socket timeout to 10800000
14:45:00.572 DEBUG - Executing request POST /session HTTP/1.1
14:45:00.572 DEBUG - Target auth state: UNCHALLENGED
14:45:00.572 DEBUG - Proxy auth state: UNCHALLENGED
14:45:00.588 DEBUG - http-outgoing-0 >> POST /session HTTP/1.1
14:45:00.588 DEBUG - http-outgoing-0 >> Content-Type: application/json; charset=utf-8
14:45:00.588 DEBUG - http-outgoing-0 >> Content-Length: 326
14:45:00.588 DEBUG - http-outgoing-0 >> Host: localhost:31009
14:45:00.588 DEBUG - http-outgoing-0 >> Connection: Keep-Alive
14:45:00.588 DEBUG - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)
14:45:00.588 DEBUG - http-outgoing-0 >> Accept-Encoding: gzip,deflate
14:45:00.588 DEBUG - http-outgoing-0 >> "POST /session HTTP/1.1[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "Content-Type: application/json; charset=utf-8[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "Content-Length: 326[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "Host: localhost:31009[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "[\r][\n]"
14:45:00.588 DEBUG - http-outgoing-0 >> "{"desiredCapabilities":{"browserName":"internet explorer","version":"11","platform":"WINDOWS"},"requiredCapabilities":{},"capabilities":{"desiredCapabilities":{"browserName":"internet explorer","version":"11","platform":"WINDOWS"},"requiredCapabilities":{},"alwaysMatch":{},"firstMatch":[{"browserName":"internet explorer"}]}}"
14:45:02.166 DEBUG - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Content-Length: 658[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Content-Type: application/json; charset=UTF-8[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Cache-Control: no-cache[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Accept-Ranges: bytes[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "Connection: close[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "{"value":{"capabilities":{"acceptInsecureCerts":false,"browserName":"internet explorer","browserVersion":"11","pageLoadStrategy":"normal","platformName":"windows","se:ieOptions":{"browserAttachTimeout":0,"elementScrollBehavior":0,"enablePersistentHover":true,"ie.browserCommandLineSwitches":"","ie.ensureCleanSession":false,"ie.fileUploadDialogTimeout":3000,"ie.forceCreateProcessApi":false,"ignoreProtectedModeSettings":false,"ignoreZoomSetting":false,"initialBrowserUrl":"http://localhost:31009/","nativeEvents":true,"requireWindowFocus":false},"setWindowRect":true,"unhandledPromptBehavior":"dismiss"},"sessionId":"ae70c28c-eb34-445c-8e47-39bcd707a6e2"}}[\n]"
14:45:02.166 DEBUG - http-outgoing-0 << "[\r][\n]"
14:45:02.166 DEBUG - http-outgoing-0 << HTTP/1.1 200 OK
14:45:02.166 DEBUG - http-outgoing-0 << Content-Length: 658
14:45:02.166 DEBUG - http-outgoing-0 << Content-Type: application/json; charset=UTF-8
14:45:02.166 DEBUG - http-outgoing-0 << Cache-Control: no-cache
14:45:02.166 DEBUG - http-outgoing-0 << Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
14:45:02.166 DEBUG - http-outgoing-0 << Accept-Ranges: bytes
14:45:02.166 DEBUG - http-outgoing-0 << Connection: close
14:45:02.197 DEBUG - http-outgoing-0: Close connection
14:45:02.197 DEBUG - Connection discarded
14:45:02.197 DEBUG - Connection released: [id: 0][route: {}->http://localhost:31009][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
14:45:02.400 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:02.400 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing POST on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url (handler: ServicedSession)
14:45:02.416 INFO - To upstream: {"url":"http://****fqdn to http server****/test.html"}
14:45:02.416 DEBUG - sun.net.www.MessageHeader@14f23b610 pairs: {POST /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Content-Length: 64}
14:45:02.635 DEBUG - sun.net.www.MessageHeader@180784b7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:02.635 INFO - To downstream: {"value":null}
14:45:02.666 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:02.666 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing POST on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/elements (handler: ServicedSession)
14:45:02.666 INFO - To upstream: {"value":".//option","using":"xpath"}
14:45:02.666 DEBUG - sun.net.www.MessageHeader@12559810 pairs: {POST /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/elements HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Content-Length: 37}
14:45:02.822 DEBUG - sun.net.www.MessageHeader@eb66ab7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 881}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:02.822 INFO - To downstream: {"value":[{"element-6066-11e4-a52e-4f735466cecf":"96272d2d-f46d-4ae9-a177-45733531bb64"},{"element-6066-11e4-a52e-4f735466cecf":"f38ca14d-f270-4cdb-af07-12e870042006"},{"element-6066-11e4-a52e-4f735466cecf":"5d59b62b-17b5-4391-b64c-2290acc3b433"},{"element-6066-11e4-a52e-4f735466cecf":"bcc01f9a-1cbb-4448-94d2-98d6778b2dd8"},{"element-6066-11e4-a52e-4f735466cecf":"f703889d-7487-4aaf-a0d9-caf4e230acc8"},{"element-6066-11e4-a52e-4f735466cecf":"56d48c96-a60d-41fb-ab89-02929738cea9"},{"element-6066-11e4-a52e-4f735466cecf":"c367ef67-cec0-4110-8876-47fd1909fa5f"},{"element-6066-11e4-a52e-4f735466cecf":"b37d8526-f59e-47e9-9502-bd55cf88e142"},{"element-6066-11e4-a52e-4f735466cecf":"b507231d-0cb3-4529-971d-9d15c67bdf8c"},{"element-6066-11e4-a52e-4f735466cecf":"d0d185e2-51cb-4d8c-af74-817dbfbf1351"},{"element-6066-11e4-a52e-4f735466cecf":"03ed2f94-c506-423f-b9ae-67e33e6e1eca"}]}
14:45:02.838 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:02.838 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/96272d2d-f46d-4ae9-a177-45733531bb64/text (handler: ServicedSession)
14:45:02.838 DEBUG - sun.net.www.MessageHeader@e9575b8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/96272d2d-f46d-4ae9-a177-45733531bb64/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:02.916 DEBUG - sun.net.www.MessageHeader@b7839d7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 16}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:02.916 INFO - To downstream: {"value":"All"}
14:45:02.916 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:02.916 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/f38ca14d-f270-4cdb-af07-12e870042006/text (handler: ServicedSession)
14:45:02.916 DEBUG - sun.net.www.MessageHeader@c5b7c68 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/f38ca14d-f270-4cdb-af07-12e870042006/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:02.994 DEBUG - sun.net.www.MessageHeader@1e8518b7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 17}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:02.994 INFO - To downstream: {"value":"Deal"}
14:45:02.994 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:02.994 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/5d59b62b-17b5-4391-b64c-2290acc3b433/text (handler: ServicedSession)
14:45:02.994 DEBUG - sun.net.www.MessageHeader@17195e28 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/5d59b62b-17b5-4391-b64c-2290acc3b433/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.072 DEBUG - sun.net.www.MessageHeader@19c54fa7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 17}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.072 INFO - To downstream: {"value":"Loan"}
14:45:03.072 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.072 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/bcc01f9a-1cbb-4448-94d2-98d6778b2dd8/text (handler: ServicedSession)
14:45:03.088 DEBUG - sun.net.www.MessageHeader@fca1888 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/bcc01f9a-1cbb-4448-94d2-98d6778b2dd8/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.166 DEBUG - sun.net.www.MessageHeader@11fc6557 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 24}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.166 INFO - To downstream: {"value":"Performance"}
14:45:03.166 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.166 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/f703889d-7487-4aaf-a0d9-caf4e230acc8/text (handler: ServicedSession)
14:45:03.166 DEBUG - sun.net.www.MessageHeader@4287918 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/f703889d-7487-4aaf-a0d9-caf4e230acc8/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.260 DEBUG - sun.net.www.MessageHeader@1d232277 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 30}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.260 INFO - To downstream: {"value":"Performance - MBA"}
14:45:03.260 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.260 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/56d48c96-a60d-41fb-ab89-02929738cea9/text (handler: ServicedSession)
14:45:03.260 DEBUG - sun.net.www.MessageHeader@953cf48 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/56d48c96-a60d-41fb-ab89-02929738cea9/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.322 DEBUG - sun.net.www.MessageHeader@193769d7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 30}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.322 INFO - To downstream: {"value":"Performance - OTS"}
14:45:03.322 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.322 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/c367ef67-cec0-4110-8876-47fd1909fa5f/text (handler: ServicedSession)
14:45:03.322 DEBUG - sun.net.www.MessageHeader@1af0b318 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/c367ef67-cec0-4110-8876-47fd1909fa5f/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.400 DEBUG - sun.net.www.MessageHeader@18046697 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 25}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.400 INFO - To downstream: {"value":"Loss and Liq"}
14:45:03.400 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.400 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/b37d8526-f59e-47e9-9502-bd55cf88e142/text (handler: ServicedSession)
14:45:03.416 DEBUG - sun.net.www.MessageHeader@11a1f18 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/b37d8526-f59e-47e9-9502-bd55cf88e142/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.479 DEBUG - sun.net.www.MessageHeader@cc0d707 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 24}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.479 INFO - To downstream: {"value":"Prepayments"}
14:45:03.479 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.479 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/b507231d-0cb3-4529-971d-9d15c67bdf8c/text (handler: ServicedSession)
14:45:03.494 DEBUG - sun.net.www.MessageHeader@161721b8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/b507231d-0cb3-4529-971d-9d15c67bdf8c/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.541 DEBUG - sun.net.www.MessageHeader@9fced07 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 26}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.541 INFO - To downstream: {"value":"Modifications"}
14:45:03.541 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.541 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/d0d185e2-51cb-4d8c-af74-817dbfbf1351/text (handler: ServicedSession)
14:45:03.541 DEBUG - sun.net.www.MessageHeader@1a0f11b8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/d0d185e2-51cb-4d8c-af74-817dbfbf1351/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.635 DEBUG - sun.net.www.MessageHeader@131d7d27 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 21}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.635 INFO - To downstream: {"value":"Property"}
14:45:03.635 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.635 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/03ed2f94-c506-423f-b9ae-67e33e6e1eca/text (handler: ServicedSession)
14:45:03.635 DEBUG - sun.net.www.MessageHeader@1c686858 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/03ed2f94-c506-423f-b9ae-67e33e6e1eca/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.744 DEBUG - sun.net.www.MessageHeader@1912b237 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 30}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.744 INFO - To downstream: {"value":"Servicer Advances"}
14:45:03.775 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.775 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing DELETE on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie (handler: ServicedSession)
14:45:03.775 DEBUG - sun.net.www.MessageHeader@1df37e38 pairs: {DELETE /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:03.822 DEBUG - sun.net.www.MessageHeader@89ee4d7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:03.822 INFO - To downstream: {"value":null}
14:45:03.822 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:03.822 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing POST on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url (handler: ServicedSession)
14:45:03.822 INFO - To upstream: {"url":"http://****fqdn to http server****/test.html"}
14:45:03.822 DEBUG - sun.net.www.MessageHeader@11eb87710 pairs: {POST /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Content-Length: 64}
14:45:04.057 DEBUG - sun.net.www.MessageHeader@1b045c47 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.057 INFO - To downstream: {"value":null}
14:45:04.057 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.057 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title (handler: ServicedSession)
14:45:04.057 DEBUG - sun.net.www.MessageHeader@1a0007e8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.072 DEBUG - sun.net.www.MessageHeader@4479c17 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 28}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.072 INFO - To downstream: {"value":"Test Page title"}
14:45:04.088 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.088 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title (handler: ServicedSession)
14:45:04.088 DEBUG - sun.net.www.MessageHeader@59a33e8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.104 DEBUG - sun.net.www.MessageHeader@11647147 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 28}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.104 INFO - To downstream: {"value":"Test Page title"}
14:45:04.104 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.104 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title (handler: ServicedSession)
14:45:04.104 DEBUG - sun.net.www.MessageHeader@9611388 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/title HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.135 DEBUG - sun.net.www.MessageHeader@103eb5a7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 28}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.135 INFO - To downstream: {"value":"Test Page title"}
14:45:04.135 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.135 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing DELETE on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie (handler: ServicedSession)
14:45:04.135 DEBUG - sun.net.www.MessageHeader@72fa178 pairs: {DELETE /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.182 DEBUG - sun.net.www.MessageHeader@1c337ea7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.182 INFO - To downstream: {"value":null}
14:45:04.182 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.182 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing POST on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url (handler: ServicedSession)
14:45:04.197 INFO - To upstream: {"url":"http://****fqdn to http server****/test.html"}
14:45:04.197 DEBUG - sun.net.www.MessageHeader@162eefb10 pairs: {POST /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/url HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Content-Length: 64}
14:45:04.416 DEBUG - sun.net.www.MessageHeader@1358cb67 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.416 INFO - To downstream: {"value":null}
14:45:04.416 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.416 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing POST on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element (handler: ServicedSession)
14:45:04.416 INFO - To upstream: {"value":"//select","using":"xpath"}
14:45:04.416 DEBUG - sun.net.www.MessageHeader@206d0510 pairs: {POST /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Content-Type: application/json; charset=utf-8}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Content-Length: 36}
14:45:04.463 DEBUG - sun.net.www.MessageHeader@fa618c7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 89}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.463 INFO - To downstream: {"value":{"element-6066-11e4-a52e-4f735466cecf":"2e2b176b-3e65-40f3-96da-116de1969e00"}}
14:45:04.463 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.463 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing GET on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/2e2b176b-3e65-40f3-96da-116de1969e00/text (handler: ServicedSession)
14:45:04.463 DEBUG - sun.net.www.MessageHeader@f9419e8 pairs: {GET /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/element/2e2b176b-3e65-40f3-96da-116de1969e00/text HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Cache-Control: no-cache}{Connection: close}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.541 DEBUG - sun.net.www.MessageHeader@10a2c0b7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 140}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.541 INFO - To downstream: {"value":"All Deal Loan Performance Performance - MBA Performance - OTS Loss and Liq Prepayments Modifications Property Servicer Advances"}
14:45:04.541 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.541 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing DELETE on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie (handler: ServicedSession)
14:45:04.541 DEBUG - sun.net.www.MessageHeader@f9342a8 pairs: {DELETE /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2/cookie HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.572 DEBUG - sun.net.www.MessageHeader@1c2c1b87 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.572 INFO - To downstream: {"value":null}
14:45:04.635 INFO - Found handler: org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.635 INFO - Handler thread for session ae70c28c-eb34-445c-8e47-39bcd707a6e2 (internet explorer): Executing DELETE on /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2 (handler: ServicedSession)
14:45:04.635 DEBUG - sun.net.www.MessageHeader@1f59e2f8 pairs: {DELETE /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2 HTTP/1.1: null}{User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_161)}{Accept-Encoding: gzip,deflate}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.666 DEBUG - sun.net.www.MessageHeader@16583ae7 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 15}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.666 INFO - To downstream: {"value":null}
14:45:04.666 INFO - Removing session org.openqa.selenium.remote.server.ServicedSession@841093
14:45:04.666 DEBUG - sun.net.www.MessageHeader@92a7247 pairs: {DELETE /session/ae70c28c-eb34-445c-8e47-39bcd707a6e2 HTTP/1.1: null}{Connection: close}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.8.0_161}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}
14:45:04.666 DEBUG - sun.net.www.MessageHeader@163b6737 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 18}{Content-Type: application/json; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.682 INFO - To downstream: { "value" : null }
14:45:04.682 DEBUG - Waiting for http://localhost:31009/shutdown
14:45:04.682 DEBUG - Polling http://localhost:31009/shutdown
14:45:04.682 DEBUG - sun.net.www.MessageHeader@d761db5 pairs: {GET /shutdown HTTP/1.1: null}{User-Agent: Java/1.8.0_161}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}
14:45:04.682 DEBUG - sun.net.www.MessageHeader@b191d07 pairs: {null: HTTP/1.1 200 OK}{Content-Length: 136}{Content-Type: text/html; charset=UTF-8}{Cache-Control: no-cache}{Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept}{Accept-Ranges: bytes}{Connection: close}
14:45:04.697 DEBUG - Polling http://localhost:31009/shutdown
14:45:04.697 DEBUG - sun.net.www.MessageHeader@4aa3a35 pairs: {GET /shutdown HTTP/1.1: null}{User-Agent: Java/1.8.0_161}{Host: localhost:31009}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}
module.exports = {
baseURL: 'http://selenium-release.storage.googleapis.com',
version: '3.4.0',
drivers: {
chrome: {
version: '2.36',
arch: process.arch,
baseURL: 'http://chromedriver.storage.googleapis.com'
},
ie: {
version: '3.4.0',
arch: process.arch,
baseURL: 'http://selenium-release.storage.googleapis.com'
},
firefox: {
version: '0.19.1',
arch: process.arch,
baseURL: 'http://github.com/mozilla/geckodriver/releases/download'
},
edge: {
version: '16299',
arch: process.arch,
baseURL: 'https://download.microsoft.com/download/D/4/1/D417998A-58EE-4EFE-A7CC-39EF9E020768/MicrosoftWebDriver.exe'
}
}
};
module.exports = {
baseURL: 'http://selenium-release.storage.googleapis.com',
version: '3.5.0',
drivers: {
chrome: {
version: '2.36',
arch: process.arch,
baseURL: 'http://chromedriver.storage.googleapis.com'
},
ie: {
version: '3.4.0',
arch: process.arch,
baseURL: 'http://selenium-release.storage.googleapis.com'
},
firefox: {
version: '0.19.1',
arch: process.arch,
baseURL: 'http://github.com/mozilla/geckodriver/releases/download'
},
edge: {
version: '16299',
arch: process.arch,
baseURL: 'https://download.microsoft.com/download/D/4/1/D417998A-58EE-4EFE-A7CC-39EF9E020768/MicrosoftWebDriver.exe'
}
}
};
<html>
<body>
<form action="/action_page.php" id="carform">
Firstname:<input type="text" name="fname">
<input type="submit">
</form>
<select name="carlist" form="carform">
<option label="All" value="object:8534" selected="selected">All</option>
<option label="Deal" value="object:8535">Deal</option>
<option label="Loan" value="object:8536">Loan</option>
<option label="Performance" value="object:8537">Performance</option>
<option label="Performance - MBA" value="object:8538">Performance - MBA</option>
<option label="Performance - OTS" value="object:8539">Performance - OTS</option>
<option label="Loss and Liq" value="object:8540">Loss and Liq</option>
<option label="Prepayments" value="object:8541">Prepayments</option>
<option label="Modifications" value="object:8542">Modifications</option>
<option label="Property" value="object:8543">Property</option>
<option label="Servicer Advances" value="object:8544">Servicer Advances</option>
</select>
</body>
</html>
var webdriver = require('selenium-webdriver');
var driver = new webdriver.Builder().forBrowser('internet explorer').usingServer('http://fqdn-to-selenium-server:4444/wd/hub').build();
var response = driver.get('http://<fqdn-to-http-server>/test.html')
.then(res => driver.findElements(webdriver.By.xpath('//option')))
.then(arr => {
console.log('done')
arr.forEach(el => el.getText().then(txt => console.log(txt)))
})
.catch(err => console.error(`ERROR: ${err}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment