Jump to content

WebDriver UDF - Help & Support


Recommended Posts

23 hours ago, Danp2 said:

@nguyenthaiytcc This isn't something that I've needed to do previously, but I believe this would be the basic syntax --

$sAction = '{"actions":[{"type": "key", "id": "keyboard_1", "actions": [{"type": "keyDown", "value": "\uE00F"}, {"type": "keyUp", "value": "\uE00F"}]}]}'
_WD_Action($sSession, "actions", $sAction)

Please give it a try and report back with your results.

Like the example in Demo,

$sAction = '{"actions":[{"id":"default mouse","type":"pointer","parameters":{"pointerType":"mouse"},"actions":[{"duration":100,"x":0,"y":0,"type":"pointerMove","origin":{"ELEMENT":"'

$sAction &= $sElement & '","' & $_WD_ELEMENT_ID & '":"' & $sElement & '"}},{"button":2,"type":"pointerDown"},{"button":2,"type":"pointerUp"}]}]}'

ConsoleWrite("$sAction = " & $sAction & @CRLF)

_WD_Action($sSession, "actions", $sAction)

the sentence is long and a little incomprehensible. Can explain what kind of continuous action this paragraph represents?

Link to comment
Share on other sites

Func _WD_jQuerify($sSession)
Local $jQueryLoader = _
"(function(jqueryUrl, callback) {" & _
"    if (typeof jqueryUrl != 'string') {" & _
"        jqueryUrl = 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js';" & _
"    }" & _
"    if (typeof jQuery == 'undefined') {" & _
"        var script = document.createElement('script');" & _
"        var head = document.getElementsByTagName('head')[0];" & _
"        var done = false;" & _
"        script.onload = script.onreadystatechange = (function() {" & _
"            if (!done && (!this.readyState || this.readyState == 'loaded' " & _
"                    || this.readyState == 'complete')) {" & _
"                done = true;" & _
"                script.onload = script.onreadystatechange = null;" & _
"                head.removeChild(script);" & _
"                callback();" & _
"            }" & _
"        });" & _
"        script.src = jqueryUrl;" & _
"        head.appendChild(script);" & _
"    }" & _
"    else {" & _
"        jQuery.noConflict();" & _
"        callback();" & _
"    }" & _
"})(arguments[0], arguments[arguments.length - 1]);"

_WD_ExecuteScript($sSession, $jQueryLoader, "[]", True)

Do
    Sleep(250)
    _WD_ExecuteScript($sSession, "jQuery")
Until @error = $_Cst_ERROR_Success

EndFunc
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<script>
function myFunction(){
    document.getElementById("demo").innerHTML="Hello World";
}
</script>
</head>
<body>

<p>Click Trigger Function</p>
<button onclick="myFunction()" id="testclick">Click Me</button>
<p id="demo"></p>

</body>
</html>

Two problems were found in the use of this function:

1,  it had been in the loading process

     until it was discovered that the file was downloaded from the Internet.

     how to load a local file and not download it from the network?

     I rewrite it in the following form, but  sometimes I find it is not working.

2  function does not return a value.

     How do I determine if the load is successful?

If $jqFilePath <> "" Then $jqFilePath = @ScriptDir & "\jquery.min.js"
    Local $jQueryLoader = _
            "(function(jqueryUrl, callback) {" & _
            "    if (typeof jqueryUrl != 'string') {" & _
            "        jqueryUrl = '" & $jqFilePath & "';" & _
            "    }" & _

 

Link to comment
Share on other sites

31 minutes ago, Letraindusoir said:

how to load a local file and not download it from the network?

Haven't tested this, but it looks like you could pass a parameter in the first _WD_ExecuteScript line representing the alternative file that you want to load.

35 minutes ago, Letraindusoir said:

function does not return a value.   How do I determine if the load is successful?

Sorry, but don't have time to debug your code for you.

Link to comment
Share on other sites

16 minutes ago, Danp2 said:

Haven't tested this, but it looks like you could pass a parameter in the first _WD_ExecuteScript line representing the alternative file that you want to load.

Sorry, but don't have time to debug your code for you.

I think you misunderstood, not let you debug my code.

Link to comment
Share on other sites

@Letraindusoir Here's a revised version of _WD_jQuerify that you are welcome to try --

; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_jQuerify
; Description ...: Inject jQuery library into current session
; Syntax ........: _WD_jQuerify($sSession[, $sjQueryFile = Default[, $iTimeout = Default]])
; Parameters ....: $sSession            - Session ID from _WDCreateSession
;                : $sjQueryFile         - [optional] Path or URL to jQuery source file
;                  $iTimeout            - [optional] Period of time to wait before exiting function
; Return values .: None
;                  @ERROR       - $_WD_ERROR_Success
;                               - $_WD_ERROR_Timeout
; Author ........: Dan Pollak
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........: https://sqa.stackexchange.com/questions/2921/webdriver-can-i-inject-a-jquery-script-for-a-page-that-isnt-using-jquery
; Example .......: No
; ===============================================================================================================================
Func _WD_jQuerify($sSession, $sjQueryFile = Default, $iTimeout = Default)
    Local Const $sFuncName = "_WD_jQuerify"

    If $sjQueryFile = Default Then
        $sjQueryFile = ""
    Else
        $sjQueryFile = '"' & StringReplace($sjQueryFile, "\", "/") & '"' ; wrap in double quotes and replace backslashes
    EndIf

    If $iTimeout = Default Then $iTimeout = $_WD_DefaultTimeout

    Local $jQueryLoader = _
    "(function(jqueryUrl, callback) {" & _
    "    if (typeof jqueryUrl != 'string') {" & _
    "        jqueryUrl = 'https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js';" & _
    "    }" & _
    "    if (typeof jQuery == 'undefined') {" & _
    "        var script = document.createElement('script');" & _
    "        var head = document.getElementsByTagName('head')[0];" & _
    "        var done = false;" & _
    "        script.onload = script.onreadystatechange = (function() {" & _
    "            if (!done && (!this.readyState || this.readyState == 'loaded' " & _
    "                    || this.readyState == 'complete')) {" & _
    "                done = true;" & _
    "                script.onload = script.onreadystatechange = null;" & _
    "                head.removeChild(script);" & _
    "                callback();" & _
    "            }" & _
    "        });" & _
    "        script.src = jqueryUrl;" & _
    "        head.appendChild(script);" & _
    "    }" & _
    "    else {" & _
    "        jQuery.noConflict();" & _
    "        callback();" & _
    "    }" & _
    "})(arguments[0], arguments[arguments.length - 1]);"

    _WD_ExecuteScript($sSession, $jQueryLoader, $sjQueryFile, True)

    If @error = $_WD_ERROR_Success Then
        Local $hWaitTimer = TimerInit()

        Do
            If TimerDiff($hWaitTimer) > $iTimeout Then
                SetError($_WD_ERROR_Timeout)
                ExitLoop
            EndIf

            Sleep(250)
            _WD_ExecuteScript($sSession, "jQuery")
        Until @error = $_WD_ERROR_Success
    EndIf

    Local $iErr = @error

    If $_WD_DEBUG = $_WD_DEBUG_Info Then
        ConsoleWrite($sFuncName & ': ' & $iErr & @CRLF)
    EndIf

    Return SetError(__WD_Error($sFuncName, $iErr))

EndFunc

 

The primary changes are as follows --

  • Optional parameter for alternate jQuery file to load
  • Optional parameter to adjust new timeout feature
  • Sets @error on exit

In my testing, I was able to load an alternate version of jQuery using a URL. However, passing in a local filename (even using the prefix "File:///") didn't work for me.

Link to comment
Share on other sites

Hi @loulou2522,

Why don't we start with what you have tried thus far to solve your problem? 😏

Also, you've only given us a screenshot thus far. If you really want the community's help in solving this issue, then it would be best to post a short reproducer script that we can run to observe the issue ourselves.

Dan

Link to comment
Share on other sites

Hi Damp2,

Thanks for your precious help.  

Sorry because  i don't speak english very well and what i want to say is Can you help me and not you can't help  

After research , I found the way to avoid this message  by modifying chrome config  

Here is the solution :

================================
To deactivate this  file message in chrome "This type of file can damage your computer" for xml files, for other type of file this is the same thing to do 
go to 😄\Users\%Username\%localappData\Local\Google\Chrome\User Data\FileTypePolicies\40 open the file download_file_types.pb
and delete the xml extension
;===================================

 

Edited by loulou2522
Link to comment
Share on other sites

2 hours ago, Danp2 said:

Hi @loulou2522 ,

I understood the question, but wanted you to do the research instead of depending on someone else to do it. 🙂

Glad you found a solution. I assume you tried it and it worked.

Regards,

Dan

 

Yes but i have a problem. When i launch manually  chrome that's works perfectly but when i launc it with chrome driver the message reappears

It seem that the profile loaded is not the same because manually send and automatic execution 

I launch with 

Func SetupChrome()
    _WD_Option('Driver', 'chromedriver.exe')
    _WD_Option('Port', 9515)
   _WD_Option('DriverParams', '--log-path="' & @ScriptDir & '\chrome.log"')
      _WD_Option('DriverParams','--user-data-dir="C:\Users\xxx\AppData\Local\Google\Chrome\User Data\Default"')
    $sDesiredCapabilities = '{"capabilities": {"alwaysMatch": {"unhandledPromptBehavior": "ignore", ' & _
    '"goog:chromeOptions": {"w3c": true, "excludeSwitches": ["enable-automation"], "useAutomationExtension": false, ' & _
    '"prefs": {"credentials_enable_service": false}, "args": ["start-maximized"] }}}}'


EndFunc   ;==>SetupChrome

 

Link to comment
Share on other sites

28 minutes ago, loulou2522 said:

Yes but i have a problem. When i launch manually  chrome that's works perfectly but when i launc it with chrome driver the message reappears

Right... you'll need to figure out how to use the correct profile in Chrome. This has been discussed multiple times on the forum, so I believe your answer can already be found in this thread.

Link to comment
Share on other sites

I think I have detected a problem in the chrome driver. Indeed in the case of use of a specific profile during the normal shutdown of the program and that I send the following commands;

WD_DeleteSession ($ sSession)
and_WD_Shutdown ()

Chrome closes normally but when reopened I get the following message "Restore pages? Chrome did not shut down properly" <RESTORE>
If I close the program the following way

If ProcessExists ("chrome.exe") Then
$ aList = WinList ()
For $ i = 1 To $ aList [0] [0]
If StringInStr ($ aList [$ i] [0], "Google Chrome")> 0 And BitAND (WinGetState ($ aList [$ i] [1]), 2) Then
Sleep (200)

WinClose ($ aList [$ i] [1])
EndIf
Next
EndIf

If ProcessExists ("chromedriver.exe") Then
Local $ hWnd = WinWait ("[REGEXPTITLE: (chromedriver.exe)]", "", 1)
WinClose ($ hWnd)
EndIf


then the programm restarts without error message

 

Here is the code which allow to test this problem 

 

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile_x64=toto.exe
#AutoIt3Wrapper_UseUpx=y
#AutoIt3Wrapper_UseX64=y
#AutoIt3Wrapper_Res_Language=1036
#AutoIt3Wrapper_Res_requestedExecutionLevel=requireAdministrator
#Au3Stripper_Parameters=/sf /sv
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

Opt("MustDeclareVars", 0)
Opt("MouseCoordMode", 1)
Opt("WinTitleMatchMode", 4)
Opt("SendKeyDelay", 100)
Opt("SendKeyDownDelay", 5)
Opt("CaretCoordMode", 0)
Opt("WinWaitDelay", 550)
Opt("MouseClickDelay", 20)
Opt("TrayIconDebug", 1)
Opt("PixelCoordMode", 0)

 Global  $echrome = True
 Global  $Ssession,$sDesiredCapabilities

#include "wd_core.au3"
#include "wd_helper.au3"


;================================================
;Recherche d la langue du systéme d'exploitation
;=============================================


    SetupChrome()

_WD_Startup()
Sleep(1000)


$sSession = _WD_CreateSession($sDesiredCapabilities)
;_WD_Window($sSession, 'Maximize')


    _WD_Navigate($sSession, "http://www.google.com")
    _WD_LoadWait($sSession,  500, -1)
    _WD_DeleteSession($sSession)
    _WD_Shutdown()

Func SetupChrome()
    ;======================================

    _WD_Option('Driver', 'chromedriver.exe')
    _WD_Option('Port', 9515)
    _WD_Option('DriverParams', '--log-path="' & @ScriptDir & '\chrome.log"')
    $sDesiredCapabilities = '{"capabilities": {"alwaysMatch": { "acceptInsecureCerts":true, "unhandledPromptBehavior": "ignore","goog:chromeOptions": {"w3c": true, "excludeSwitches": ["enable-automation"], "useAutomationExtension": false,"prefs": {"credentials_enable_service": false}, "args":["start-minimized","--user-data-dir=C:\\Users\\' & @UserName & '\\AppData\\Local\\Google\\Chrome\\User Data\\",  "disable-infobars"]}}}}'
EndFunc   ;==>SetupChrome

After you have to relaunch the programm and you get this message :

image.thumb.png.362600116f92c32e69bddfd019c95a14.png

Edited by loulou2522
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...