Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
skpandian
Posts : 4
Join date : 2014-04-10

INFO: I/O exception (java.net.SocketException) caught when processing request Empty INFO: I/O exception (java.net.SocketException) caught when processing request

Tue Apr 29, 2014 4:54 pm
Hi,

I'm getting the below Info in the o/p console, but indeed there is no interruption in the execution. I know it is just an Info message, I dont want this to be displayed in the console. How could I get ride of this. I did tried some work around as my initial code is commented but no JOY.

Console O/P:


Started InternetExplorerDriver server (32-bit)

2.32.3.0

Listening on port 36534

29-Apr-2014 10:42:50 org.apache.http.impl.client.DefaultRequestDirector tryExecute

INFO: I/O exception (java.net.SocketException) caught when processing request: Software caused connection abort: recv failed

29-Apr-2014 10:42:50 org.apache.http.impl.client.DefaultRequestDirector tryExecute

INFO: Retrying request





Code Snippet:
System.setProperty(
"webdriver.ie.driver", "\\H:\\Selenium Script\\supporting files\\IEDriverServer.exe");DesiredCapabilities capability=
new DesiredCapabilities();


//DesiredCapabilities capability= DesiredCapabilities.internetExplorer();capability.setCapability(InternetExplorerDriver.
INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);capability.setCapability(CapabilityType.
ACCEPT_SSL_CERTS, [b]true);capability.setCapability(
"initialBrowserUrl", "https://" mysite");

driver =
[b]new InternetExplorerDriver(capability);


//driver.get("https://" mysite");driver.navigate().to(
"javascript:document.getElementById('overridelink').click()");driver.manage().timeouts().implicitlyWait(5, TimeUnit.
[i]SECONDS);



[/b][/i][/b]
Back to top
Permissions in this forum:
You cannot reply to topics in this forum