Letraindusoir Posted December 2, 2019 Share Posted December 2, 2019 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 More sharing options...
loulou2522 Posted December 2, 2019 Share Posted December 2, 2019 Is it possible to respond to this message Ce type de fichier risque d'endommager votre ordinateur : Enregsitrer Annuler ? Link to comment Share on other sites More sharing options...
Danp2 Posted December 2, 2019 Author Share Posted December 2, 2019 19 minutes ago, Letraindusoir said: how do write it? You can't expect someone else to provide a solution for every situation you come up with. What have you tried to implement this? P.S. The forum's search feature can be your friend Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
Danp2 Posted December 2, 2019 Author Share Posted December 2, 2019 22 minutes ago, Letraindusoir said: the sentence is long and a little incomprehensible. Can explain what kind of continuous action this paragraph represents? It moves the mouse pointer to the designated element and then performs a right click. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
Letraindusoir Posted December 3, 2019 Share Posted December 3, 2019 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 More sharing options...
Danp2 Posted December 3, 2019 Author Share Posted December 3, 2019 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. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
Letraindusoir Posted December 3, 2019 Share Posted December 3, 2019 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 More sharing options...
Danp2 Posted December 4, 2019 Author Share Posted December 4, 2019 @Letraindusoir Here's a revised version of _WD_jQuerify that you are welcome to try -- expandcollapse popup; #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. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
loulou2522 Posted December 6, 2019 Share Posted December 6, 2019 Hi Damp2, You can't help me solving my security problem (seeing my post earlier) ? Perhaps it's impossible to make something ? THanks in advance Link to comment Share on other sites More sharing options...
Danp2 Posted December 6, 2019 Author Share Posted December 6, 2019 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 Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
nguyenthaiytcc Posted December 7, 2019 Share Posted December 7, 2019 (edited) Hi @Danp2, I need your help again 😁 I need to catch an element (its css will change, d = 'XXX'). I think I should search for that element with xpath and can I somehow display the value XXX? Edited December 7, 2019 by nguyenthaiytcc Link to comment Share on other sites More sharing options...
Danp2 Posted December 7, 2019 Author Share Posted December 7, 2019 @nguyenthaiytcc That sounds about right. What have you tried thus far? 😉 Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
nguyenthaiytcc Posted December 7, 2019 Share Posted December 7, 2019 Dear @Danp2 I want to get the value d = 'xxx', how can I do that Link to comment Share on other sites More sharing options...
loulou2522 Posted December 7, 2019 Share Posted December 7, 2019 (edited) 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 December 7, 2019 by loulou2522 Link to comment Share on other sites More sharing options...
Danp2 Posted December 7, 2019 Author Share Posted December 7, 2019 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 Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
Danp2 Posted December 7, 2019 Author Share Posted December 7, 2019 @nguyenthaiytcc Take a look at the function _WD_ElementAction. It supports many different commands, two of which allow you to retrieve the attributes and properties of an element. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
loulou2522 Posted December 7, 2019 Share Posted December 7, 2019 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 More sharing options...
Danp2 Posted December 7, 2019 Author Share Posted December 7, 2019 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. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
loulou2522 Posted December 9, 2019 Share Posted December 9, 2019 (edited) 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 expandcollapse popup#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 : Edited December 9, 2019 by loulou2522 Link to comment Share on other sites More sharing options...
Danp2 Posted December 9, 2019 Author Share Posted December 9, 2019 @loulou2522 AFAIK, the UDF is sending the correct commands to the webdriver. This has been discussed previously in this same thread and a solution that involved writing changes directly into some of the profile's files was provided. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
Recommended Posts