PhoTTo Posted November 21, 2016 Posted November 21, 2016 Hello, I have a problem in making a little script. If someone could help I would thank him a lot. I want to search a text (ex. Assign) in Chrome web page and after to paste it in a text document the number of findings. (ex. 2 times, 3 times) I was trying to use ControlListView with GetItemCount and GetText but no luck in working. Below i post Window info, maybe it help. >>>> Window <<<< Title: assign wait -OrderTray - Iron Class: Chrome_WidgetWin_1 Position: -4, -4 Size: 1608, 1180 Style: 0x17CF0000 ExStyle: 0x00000100 Handle: 0x000000000002040E >>>> Control <<<< Class: Chrome_RenderWidgetHostHWND Instance: 1 ClassnameNN: Chrome_RenderWidgetHostHWND1 Name: Advanced (Class): [CLASS:Chrome_RenderWidgetHostHWND; INSTANCE:1] ID: 354263464 Text: Chrome Legacy Window Position: 0, 85 Size: 1600, 1087 ControlClick Coords: 316, 282 Style: 0x56300000 ExStyle: 0x00000020 Handle: 0x00000000078609AE Thanks
Moderators Melba23 Posted November 21, 2016 Moderators Posted November 21, 2016 PhoTTo, Please do not hijack other only tenuously related threads - just start your own as I have now done for you. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
junkew Posted November 21, 2016 Posted November 21, 2016 https://www.autoitscript.com/wiki/FAQ question 31 is a good point to start PhoTTo 1 FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
PhoTTo Posted November 25, 2016 Author Posted November 25, 2016 #Include <Array.au3> #Include <Chrome.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> _ChromeDocWaitForExistenceByTitle("process list", 5) $page = _ChromeObjGetHTMLByTagName ("tbody", 1) $pageArray = StringSplit($page, @CRLF) For $i = 1 To $pageArray[0] If StringInStr($pageArray[$i], "Editing...") Then MsgBox($MB_SYSTEMMODAL, "1 ORDER EDITING", $pageArray[$i]) Next No result from this. I try to search a text between tags and no result. If someone can help me.
junkew Posted November 25, 2016 Posted November 25, 2016 body and not tag tbody? FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
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