It's currently not working for you? I'm assuming the authentication
pops up before the URL to open in browser completely loads. But does
the authentication block Selenium(Library) open browser keyword from
completing and return (to RF test)?
If it is blocking, then your only option is to create test where you
run both commands simultaneously. I believe that isn't possible as
part of test case syntax (but could be wrong). You'd have to either:
* create AutoIt program/server that will poll for the window and hit
ok and launch this program (via Run keywords from
OperatingSystemLibrary, etc or some equivalent shell execute call) to
execute by itself in parallel while Selenium command is and not wait
for it to return a status code (return right away, while program is
still running).
* create your own keyword that will run AutoItLibrary command in
parallel but not be blocking your test, in that it will return
immediately upon call rather than wait for AutoIt keyword to complete
(and return a value).
Also, have you looked into the other various methods to supply
authentication login info through the FF profile or HTTP headers sent
from FF so that you can bypass the browser GUI login popup. Google for
them. These only work for FF browser though.
On Apr 2, 7:58 am, antonio III cabreira