Chrome browser fails to launch
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Kanashius
This UDF can be used to draw at the Desktop Wallpaper (Windows 8+) with GDI+ without using files.
The example runs with 60-120fps at my machine, so the speed is acceptable.
When the script exits, the original wallpaper is restored.
Have fun :).
PS: The UDF uses the window between the background and the icons, so it could be used to add an own child window at the desktop. Just look at the begin of __Wallpaper_Startup ($hWorkerW).
Example:
WallpaperUDF.au3 WallpaperUDF Example.au3
-
By TTE26
For the past two days I've been reading all Wiki pages, installed all the demos etc. but I am still unable to do this simple workflow
1. I want to use WebDriver UDF to open Chrome (Set chrome option arguments - Window Size, Pixel ratio, device type and platform name, user-agent.)
2. On new Tab I want to read the tab Title and save it into a TXT file.
3. I need to save the Session ID with my previosly set Capabilities into a file.
4. I want to close the chrome window.
Then
5. I want to open Chrome again, but with my previosly saved Session ID and Capabilities list from the file.
6. And minimaze the window state.
7. After 30 seconds, close the chrome.
I would really appreciate for the WebDriver UDF Helper file, to have also basic code examples, for non coders. For example how to open a windwow etc., save sessions, etc.
Anyway, if someone could help me get started and help me with this workflow, that would be much appreaciated. 😔
-
By lapoelkan12
hi i try to use webdriver i download it and download json and winhttp i try to run it but return error
error: __WinHttpVer(): undefined function.
Local $sWinHttpVer = __WinHttpVer()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
-
By sandgre
Wondering if you can help a teacher out. For the last few years of remote, hybrid, and in-person teaching I've been using an AutoHotKey script that creates an inking toolbar to be used during a PowerPoint presentation. (https://www.autohotkey.com/boards/viewtopic.php?t=79163) The annotation tools available through Ppt are woefully inadequate, and, on my machine at least, jump around all over the place - sometimes on the bottom, sometimes on the left, sometimes on the right. It's a scavenger hunt every single time. The inking tool is always available, and recent updates allowed for the addition of lots more colors, which I used for modeling phenomena with students. One tragic day I arrived to school to find that my district IT dep't took away access to AutoHotKey. No more tool bar.
I've been trying to resurrect some programming skills from a past life. I'm working through various tutorials and help files, with the goal of recreating the toolbar in AutoIt. I'm really needing some help to move things along though. I've been going through your PowerPoint UDF and all of your functions seem to just relate to editing the slides. Can you point me in the direction of how to create a toolbar that accesses the annotation tools that are available during the slideshow itself?
-
By levila
Hi Guys, i just do some codding to automate login to some of the web.
I manage to do the script but somehow after script done, some weird box popup. and keep looping until i close the main chrome.exe
here is my code. kinldy pls assist, im very new to webdriver udf.
#NoTrayIcon #include "wd_core.au3" #include "wd_helper.au3" $_WD_DEBUG = $_WD_DEBUG_None ; You could also use $_WD_DEBUG_Error Local $sDesiredCapabilities, $sSession SetupChrome() _WD_Startup() $sSession = _WD_CreateSession($sDesiredCapabilities) _WD_Navigate($sSession, "https://someoftheweb.com") _ChromeSetInputValueByName($sSession, "inputName", "Username") _ChromeSetInputValueById($sSession, "inputPassword", "Password") _ChromeSetMouseClick($sSession, "submit", "click") _WD_Shutdown() Func SetupChrome() _WD_Option('Driver', 'chromedriver.exe') _WD_Option('Port', 9515) _WD_Option('DriverParams', '--log-path="' & @ScriptDir & '\chrome.log"') $sDesiredCapabilities = '{"capabilities": {"alwaysMatch": {"goog:chromeOptions": {"w3c": true, "args":["--no-sandbox"]}}}}' EndFunc Func _ChromeSetInputValueByName($sSession,$name,$Value) $sButton = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//input[@id='"&$name&"']") _WD_ElementAction($sSession,$sButton,'value', $Value) EndFunc Func _ChromeSetInputValueById($sSession,$Id,$Value) $sButton = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//input[@id='"&$Id&"']") _WD_ElementAction($sSession,$sButton,'value', $Value) EndFunc Func _ChromeSetMouseClick($sSession,$Id,$Value) $sButton = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//button[@type='"&$Id&"']") _WD_ElementAction($sSession, $sButton, 'click', $Value) EndFunc
-
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now