Fraufreda Posted September 20, 2015 Posted September 20, 2015 Hello. I am a new to AutoIt world and I would appreciate if you could help me in the following two problems:1) How to call button clicking in chrome. I have inspected the element and it was:<button class="icon icon-pane" data-ignore-capture="any" title="New pane" data-reactid=".0.1:$main.3.0:$PaneHeader.1.$panelist-header.0.$=11.0">New pane</button>2) how to script a selection of an item from a list in column A in excel and loop through up until it finishes the whole list. <span class="emojitext ellipsify" dir="auto" title="item taken from excel Col1" data-reactid=".0.1:$main.2.0.$=10.0.$=10.1.2.0.0.$"item taken from excel Col2"@c=1us.$"item taken from excel Col2"@c=1us.1.0.0.0">item taken from excel Col1</span>kindly note that I have already installed chrome.au3 and so the script should work in chrome environment.I would appreciate your helpthanks in advance
Fraufreda Posted September 21, 2015 Author Posted September 21, 2015 Or even by using firefox instead of chrome. Any ideas??
Bert Posted September 21, 2015 Posted September 21, 2015 The Vollatran project My blog: http://www.vollysinterestingshit.com/
Fraufreda Posted September 21, 2015 Author Posted September 21, 2015 I tried to manipulate the code to get the button clicked but no success. Can you help me?#include "UIAWrappers.au3" AutoItSetOption("MustDeclareVars", 1) Local $oP7=_UIA_getObjectByFindAll($UIA_oDesktop, "Title:=EasyGame Web - Mozilla Firefox;controltype:=UIA_WindowControlTypeId;class:=MozillaWindowClass", $treescope_children) _UIA_Action($oP7,"setfocus") Local $oP6=_UIA_getObjectByFindAll($oP7, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) Local $oP5=_UIA_getObjectByFindAll($oP6, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) Local $oP4=_UIA_getObjectByFindAll($oP5, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) Local $oP3=_UIA_getObjectByFindAll($oP4, "Title:=EasyGame Web;controltype:=UIA_DocumentControlTypeId;class:=", $treescope_children) Local $oP2=_UIA_getObjectByFindAll($oP3, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) Local $oP1=_UIA_getObjectByFindAll($oP2, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) Local $oP0=_UIA_getObjectByFindAll($oP1, "Title:=;controltype:=UIA_CustomControlTypeId;class:=", $treescope_children) ;~ First find the object in the parent before you can do something ;~$oUIElement=_UIA_getObjectByFindAll("Newpane.mainwindow", "title:=New pane;ControlType:=UIA_ButtonControlTypeId", $treescope_subtree) Local $oUIElement=_UIA_getObjectByFindAll($oP0, "title:=New pane;ControlType:=UIA_ButtonControlTypeId", $treescope_subtree) _UIA_action($oUIElement,"click")
Bert Posted September 22, 2015 Posted September 22, 2015 I have not dabbled in it much at all. I can suggest to you to look at the examples and try them out. Once you understand how they work you should be able to get your code to work. Sorry I'm not much help on this one. The Vollatran project My blog: http://www.vollysinterestingshit.com/
Fraufreda Posted September 23, 2015 Author Posted September 23, 2015 thank you dear. really appreciate your reply
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