Jump to content

maninternet

Members
  • Posts

    11
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

maninternet's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. $sElement = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "//div[contains(@class, 'news-finance-state mb')]/div[2]/div[6]/div") _WD_ElementAction($sSession, $sElement, "Click") It's work, super thanks.
  2. I already update as your suggest it not suggest to update version but the error still be the same. _WD_Option ==> Success [0] : Parameters: Option=Driver Value=chromedriver.exe _WD_Option ==> Success [0] : Parameters: Option=Port Value=9515 _WD_Option ==> Success [0] : Parameters: Option=DriverParams Value=--verbose --log-path="E:\My\SET\New web RROA\chrome.log" _WD_CapabilitiesAdd ==> Success [0] : Successfully used [alwaysMatch] with specified browser: chrome _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability _WD_CapabilitiesDump: JSON structure starts below: 11 { "capabilities":{ "alwaysMatch":{ "goog:chromeOptions":{ "w3c":true, "excludeSwitches":[ "enable-automation" ] } } } } _WD_CapabilitiesDump: JSON structure ends above. _WD_IsLatestRelease ==> Success [0] : True _WD_Startup: OS: WIN_11 WIN32_NT 22621 _WD_Startup: AutoIt: 3.3.16.1 _WD_Startup: Webdriver UDF: 0.11.0 (Up to date) _WD_Startup: WinHTTP: 1.6.4.2 _WD_Startup: Driver: chromedriver.exe (32 Bit) _WD_Startup: Params: --verbose --log-path="E:\My\SET\New web RROA\chrome.log" _WD_Startup: Port: 9515 _WD_Startup: Command: "chromedriver.exe" --verbose --log-path="E:\My\SET\New web RROA\chrome.log" __WD_Post ==> Webdriver Exception [10] : HTTP status = 500 _WD_Action ==> Webdriver Exception [10] : Parameters: Command=actions Option={"actions":[{"id":"hover","type":"pointer","parameters":{"pointerType":"mouse"},"actions":[{"type":"pointerMove","duration":100,"x":0,"y":0,"origin":{"ELEMENT":"c39af9eb-8632-4acf-b340-73ed3caa0de0","element-6066-11e4-a52e-4f735466cecf":"c39af9eb-8632-4acf-b340-73ed3caa0de0"}},{"type":"pointerDown","button":0},{"type":"pointerUp","button":0}]}]} _WD_ElementActionEx ==> Webdriver Exception [10] : Parameters: Element=c39af9eb-8632-4acf-b340-73ed3caa0de0 Command=Click XOffset=Default YOffset=Default Button=Default HoldDelay=Default Modifier=Default My code is below but as the code must read another .txt file, You can create the file with only text "LPF" to test. #include "wd_helper.au3" #include "wd_capabilities.au3" #include "array.au3" _WD_Option('Driver', 'chromedriver.exe') _WD_Option('Port', 9515) _WD_Option('DriverParams', '--verbose --log-path="' & @ScriptDir & '\chrome.log"') _WD_CapabilitiesStartup() _WD_CapabilitiesAdd('alwaysMatch', 'chrome') _WD_CapabilitiesAdd('w3c', True) _WD_CapabilitiesAdd('excludeSwitches', 'enable-automation') _WD_CapabilitiesDump(@ScriptLineNumber) Local $sCapabilities = _WD_CapabilitiesGet() _WD_Startup() $sSession = _WD_CreateSession($sCapabilities) _WD_Window($sSession,"MAXIMIZE") $File = FileOpen("StockRROA.txt") $Symbol = FileReadToArray($File) FileClose($File) For $i = 0 To UBound($Symbol) - 1 _WD_Navigate($sSession,"https://www.set.or.th/en/market/product/stock/quote/"&$Symbol[$i]&"/news") $Count = 0 Do $LoadSymbol = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//h1[@class='symbol text-white mb-0 me-2']") $ReadSymbol = _WD_ElementAction($sSession,$LoadSymbol,"TEXT") $Count = $Count + 1 If $Count >9 Then _WD_Navigate($sSession,"https://www.set.or.th/en/market/product/stock/quote/"&$Symbol[$i]&"/financial-statement/company-highlights") $Count = 0 EndIf Until $ReadSymbol == $Symbol[$i] Do $CheckText = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//span[@class='fs-12px col-10 text-color-grey']") $TextCheck = _WD_ElementAction($sSession,$CheckText,"TEXT") Until StringInStr($TextCheck,"important") $CheckText = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//div[@class='news-finance-state mb-4']/div[2]/div[6]/div/span") $TextCheck = _WD_ElementAction($sSession,$CheckText,"TEXT") If StringInStr($TextCheck,"more") Then $CheckText = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//div[@class='news-finance-state mb-4']/div[2]/div[6]/div") _WD_ElementActionEx($sSession,$CheckText,"Click") EndIf Next _WD_DeleteSession($sSession) _WD_Shutdown()
  3. Oh, i always understand that as I still get element ID it shouldn't be any error occur. Thank you for suggestion. Below is full output from my code. _WD_Option ==> Success [0] : Parameters: Option=Driver Value=chromedriver.exe _WD_Option ==> Success [0] : Parameters: Option=Port Value=9515 _WD_Option ==> Success [0] : Parameters: Option=DriverParams Value=--verbose --log-path="E:\My\SET\New web RROA\chrome.log" _WD_CapabilitiesAdd ==> Success [0] : Successfully used [alwaysMatch] with specified browser: chrome _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability _WD_CapabilitiesAdd ==> Success [0] : Successfully added capability _WD_CapabilitiesDump: JSON structure starts below: 11 { "capabilities":{ "alwaysMatch":{ "goog:chromeOptions":{ "w3c":true, "excludeSwitches":[ "enable-automation" ] } } } } _WD_CapabilitiesDump: JSON structure ends above. _WD_IsLatestRelease ==> Success [0] : True _WD_Startup: OS: WIN_11 WIN32_NT 22621 _WD_Startup: AutoIt: 3.3.16.1 _WD_Startup: Webdriver UDF: 0.11.0 (Up to date) _WD_Startup: WinHTTP: 1.6.4.1 (Download latest source at <https://raw.githubusercontent.com/dragana-r/autoit-winhttp/master/WinHttp.au3>) _WD_Startup: Driver: chromedriver.exe (32 Bit) _WD_Startup: Params: --verbose --log-path="E:\My\SET\New web RROA\chrome.log" _WD_Startup: Port: 9515 _WD_Startup: Command: "chromedriver.exe" --verbose --log-path="E:\My\SET\New web RROA\chrome.log" _WD_Startup ==> Success [0] __WD_Post ==> Success [0] : HTTP status = 200 _WD_CreateSession ==> Success [0] : 7ca194b236f41e11a2a5e6ea56dcfd34 __WD_Post ==> Success [0] : HTTP status = 200 _WD_Window ==> Success [0] : Parameters: Command=MAXIMIZE Option=Default __WD_Post ==> Success [0] : HTTP status = 200 _WD_Navigate ==> Success [0] : Parameters: URL=https://www.set.or.th/en/market/product/stock/quote/LPF/news __WD_Post ==> Success [0] : HTTP status = 200 _WD_FindElement ==> Success [0] : Parameters: Strategy=xpath Selector=//h1[@class='symbol text-white mb-0 me-2'] StartNodeID=Default Multiple=Default ShadowRoot=Default __WD_Get ==> Success [0] : HTTP status = 200 _WD_ElementAction ==> Success [0] : Parameters: Command=TEXT Option=Default __WD_Post ==> Success [0] : HTTP status = 200 _WD_FindElement ==> Success [0] : Parameters: Strategy=xpath Selector=//span[@class='fs-12px col-10 text-color-grey'] StartNodeID=Default Multiple=Default ShadowRoot=Default __WD_Get ==> Success [0] : HTTP status = 200 _WD_ElementAction ==> Success [0] : Parameters: Command=TEXT Option=Default __WD_Post ==> Success [0] : HTTP status = 200 _WD_FindElement ==> Success [0] : Parameters: Strategy=xpath Selector=//div[@class='news-finance-state mb-4']/div[2]/div[6]/div/span StartNodeID=Default Multiple=Default ShadowRoot=Default __WD_Get ==> Success [0] : HTTP status = 200 _WD_ElementAction ==> Success [0] : Parameters: Command=TEXT Option=Default __WD_Post ==> Success [0] : HTTP status = 200 _WD_FindElement ==> Success [0] : Parameters: Strategy=xpath Selector=//div[@class='news-finance-state mb-4']/div[2]/div[6]/div StartNodeID=Default Multiple=Default ShadowRoot=Default _WD_JsonActionPointer ==> Success [0] : {"type":"pointerDown","button":0} _WD_JsonActionPointer ==> Success [0] : {"type":"pointerUp","button":0} __WD_Post ==> Webdriver Exception [10] : HTTP status = 500 _WD_Action ==> Webdriver Exception [10] : Parameters: Command=actions Option={"actions":[{"id":"hover","type":"pointer","parameters":{"pointerType":"mouse"},"actions":[{"type":"pointerMove","duration":100,"x":0,"y":0,"origin":{"ELEMENT":"a0914ca9-f8d8-48f3-9ec1-3880623c3752","element-6066-11e4-a52e-4f735466cecf":"a0914ca9-f8d8-48f3-9ec1-3880623c3752"}},{"type":"pointerDown","button":0},{"type":"pointerUp","button":0}]}]} _WD_ElementActionEx ==> Webdriver Exception [10] : Parameters: Element=a0914ca9-f8d8-48f3-9ec1-3880623c3752 Command=Click XOffset=Default YOffset=Default Button=Default HoldDelay=Default Modifier=Default
  4. Sorry as the result still same previous so I didn't explain much for the details. Correct that the code can detect and didn't show any error. The output show as below. _WD_FindElement ==> Success [0] : Parameters: Strategy=xpath Selector=//div[@class='news-finance-state mb-4']/div[2]/div[6]/div StartNodeID=Default Multiple=Default ShadowRoot=Default _WD_JsonActionPointer ==> Success [0] : {"type":"pointerDown","button":0} _WD_JsonActionPointer ==> Success [0] : {"type":"pointerUp","button":0} __WD_Post ==> Webdriver Exception [10] : HTTP status = 500 _WD_Action ==> Webdriver Exception [10] : Parameters: Command=actions Option={"actions":[{"id":"hover","type":"pointer","parameters":{"pointerType":"mouse"},"actions":[{"type":"pointerMove","duration":100,"x":0,"y":0,"origin":{"ELEMENT":"065df1d6-e22a-4cdc-a918-3d8ac2f62c1f","element-6066-11e4-a52e-4f735466cecf":"065df1d6-e22a-4cdc-a918-3d8ac2f62c1f"}},{"type":"pointerDown","button":0},{"type":"pointerUp","button":0}]}]} _WD_ElementActionEx ==> Webdriver Exception [10] : Parameters: Element=065df1d6-e22a-4cdc-a918-3d8ac2f62c1f Command=Click XOffset=Default YOffset=Default Button=Default HoldDelay=Default Modifier=Default Can you advise how to use Chrome's Dev Tools to check the event attached. Sorry I really less knowledge on this. I try to search and read in internet but I cannot get result as the suggestion from those website.
  5. Thank you for your suggestion. I try to use action on element DIV instead but it still cannot click to load content. $CheckText = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//div[@class='news-finance-state mb-4']/div[2]/div[6]/div") _WD_ElementActionEx($sSession,$CheckText,"CLICK")
  6. Hi I try to use WebDriver over Chrome to retrieve information from a website. I have problem that there is a "Word" that normally need to click to let the website show more content. The HTML before click on the "Word" is below. <div role="button" class="px-3 d-flex bg-white"> <span class="title-font-family fs-24px me-2">More</span> <div class="icon-circle ms-2"> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus plus"> <line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"> </line></svg> <!----></div></div> I try to use _WD_ElementAction / _WD_ElementActionEx / _WD_LinkClickByText but it cannot active click to let the website show content. (I already check in HTML and confirmed that the content not just hide by script but will loaded after the code above was clicked.) Can anyone advise for the correct code to use? Below is code to for FindElement, it already confirm can use to get element <span> in above code. $CheckText = _WD_FindElement($sSession,$_WD_LOCATOR_ByXPath,"//div[@class='news-finance-state mb-4']/div[2]/div[6]/div/span")
  7. Sorry I didn't back to reply until now. Since the website that I target to read the source need login and it's contain my some personal information. So I cannot share the source to you. By the way, I have try myself on both method. I have found the best way to add sleep(70) after the reload button was clicked. So it's the fastest and reliable way. I have one more question, Can we reduce the time use for _WD_Getsource()? This's now bottle neck of my script.
  8. I have a problem on _WD_GetSource that it's too fast to retrieve source before the web page complete reload. I found that we can use _WD_LoadWait to check complete before continue. By the way, the web page that I need to retrieve source has reload by script inside that mean _WD_LoadWait cannot detect that it under loading. So I have 2 idea to solve this issue by 1. Use _WD_GetSource and compare with last "Source" before reload, when found any change will continue. 2.Use PixelChecksum to check any area on web page (I expect to found any change once load complete), when found change then continue. So I need suggestion that which idea could get result better and also better speed. Can anyone advise on this. If there are any function or idea that could better than please suggest also.
  9. Hi all, I have plan to use Autoit to interact with the information that showed on webpage. By the way, as that website didn't support with Internet Explorer anymore (There are login step and process to check the browser that I cannot skip it). So I need to take all of my code to control on Microsoft Edge instead. I try to use _IEAttach to control "Edge" but it doesn't work. The _IEAttach always return error "7" that mean it cannot find the correct browser. Can anyone suggest me for the code to make _IEAttach control "Edge" or any others web browser (Opera / Maxthon / Chrome / Firefox) instead of "IE".
  10. Thank you water, this is the thing it want. It can run correctly.
  11. Hi all, I have a problem to create script to read some information form the excel. The excel file that I get has contained some hidden sheet and make my script take wrong information from the file. So my idea is create scrip to delete all hidden sheet in excel before start reading the value inside. I try to use _Excel_SheetList() to check all sheet but it can do only listing all sheet inside the file but it didn't gave me any info for hidden sheet. So I still cannot let the script know which one is hidden sheet. Can anyone help me for some sample script to solve my issue?
×
×
  • Create New...