Jump to content

[SOLVED] Can I run an Autoit script that requires focus and mouse clicks in the background and do work?


Recommended Posts

1 minute ago, nooneclose said:

I added the "$_WD_DEBUG = $_WD_DEBUG_None ; You could also use $_WD_DEBUG_Error" but it didn't close the WebDriver.exe

It won't close an already opened console window. However, it will launch the console hidden if you properly initialize $_WD_DEBUG before calling _WD_Startup.

3 minutes ago, nooneclose said:

Then when I went to look up info in the wd_core I didn't find any info on _wd_ConsoleVisible other than a note saying you added it?  

That's because you looked in the wrong file. Core functionality goes into wd_core. Everything else goes into wd_helper. :thumbsup:

Link to comment
Share on other sites

@nooneclose Obviously, we are having some communication issues. Let me try again.

The webdriver console gets launched in _WD_Startup(). Therefore, either of the following method should work to control the console's visibility --

1) Set the variable $_WD_DEBUG equal to $_WD_DEBUG_None. This should occur after the #include, but before calling _WD_Startup(). This should launch the console in a hidden state.

2) Anytime after calling _WD_Startup(), you can use _WD_ConsoleVisible() to either hide or show the console

Make sense now?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...