Hi,
I'm a web automation test engineer using Selenide.
Thanks for the excellent framework, I love it.
Anyway, now I'm stacking in a painful problem several days...
When I wrote a quite simple code like below:
---
open("our-sut-url", PageObject.class);
---
I got a TimeoutException from Selenide.open(). But I have no problem without PageObject.class argument:
---
open("our-sut-url");
---
This symptom is environment-dependent. I got the error in RHEL, but the same script works perfectly in Win7.
RHEL env: RHEL7, OpenJDK8, Chromium 61 (from EPEL), chromedriver 2.34 (compatible with Chromium 61), Selenide 4.8 and selenium-java 3.6.0.
Win7 env: Windows 7 32bit, OracleJDK8, Chrome 64, chromedriver 2.35 (compatible with Chrome 64), Selenide 4.8 and selenium-java 3.6.0
(I knew I should migrate my scripts to newer Selenide/Selenium, but I can't ATM)
Any hints?
Best,
--
Naruhiko NARU Ogasawara