You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ThreadID: 10]Can't get driver; Thread: 10
Drivers: FIREFOX:com.epam.jdi.uitests.web.selenium.driver.SeleniumDriverFactory$$Lambda$8/1859039536@53f282db; Run: java.lang.ThreadLocal@29b13258Exception: The driver executable does not exist: /home/mike/Downloads/JDI-Examples-master/src/main/resources/driver/geckodriver.exe
[ThreadID: 1]Test run finished.
Expected result: gecko driver should be loaded and tests successfully started
Going through the sources, I notified that gecko driver is not being loaded at all. Also, the following thing is strange:
from SeleniumDriverFactory:
...
// GET DRIVER
protected String registerLocalDriver(DriverTypes driverType) {
switch (driverType) {
case CHROME:
...
case FIREFOX:
return registerDriver(driverType,
() -> {
DesiredCapabilities capabilities = internetExplorer(); <<<<
capabilities.setCapability(PAGE_LOAD_STRATEGY, pageLoadStrategy);
setProperty("webdriver.gecko.driver", getFirefoxDriverPath(driversPath));
return webDriverSettings.apply(new FirefoxDriver(capabilities));
});
case IE:
...
Please check and fix
The text was updated successfully, but these errors were encountered:
RomanIovlev
changed the title
firefox driver is not loaded by default
firefox driver is not loaded by default - Dmitry Dobrolubov
Jun 7, 2017
Hello,
Version: com.epam.jdi:jdi-uitest-web:1.0.58
STR:
Actual result:
Expected result: gecko driver should be loaded and tests successfully started
Going through the sources, I notified that gecko driver is not being loaded at all. Also, the following thing is strange:
Please check and fix
The text was updated successfully, but these errors were encountered: