Sauce service #99
bajipogadadanda
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
We need to use Sauce pre-run executables to handle windows login pop-ups. what is the best way to handle to it?
In Java selenium FW, we are following 2 approaches with autolit exe file. Both are working good. I would like to know how to implement the same for webdriverIO
DPRERUN_EXECUTABLE= -DPRERUN_ARGS="*,${UID},${PASS}
@test
public void promptBeforeNavigationTest() {
System.setProperty(prerunExePropKey, "http://server/svn/Misc/Prerunt.exe");
System.setProperty(prerunUsernamePropkey, prerunUsernamePropVal);
System.setProperty(prerunPwdPropKey, prerunPwdPropVal);
this.getDriver().get("https://url");
}
Beta Was this translation helpful? Give feedback.
All reactions