kgress / scaffold

A Java based Selenium WebDriver abstraction
MIT License
4 stars 7 forks source link

remote-url is not usable unless using run-type = GRID || SAUCE #51

Closed kgress closed 4 years ago

kgress commented 4 years ago

Bug

Scaffold will only use a remote-url if the run-type is set to GRID or SAUCE.

Expected

This is problematic if we're wanting to run the testing with docker where we need to set the remote url to a specific IP/port. We should instead check to see if the remote-url is configured. If so, configure a remote driver instead of a local driver.

This should be usable with LOCAL and HEADLESS runs and not limited to GRID or SAUCE.

A/C