How to Click on Google Voice Send Div (Button)?

Discussions and Tech Support specific to the iMacros for Chrome extension.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
AndreaW
Posts: 3
Joined: Mon Oct 10, 2016 6:53 pm

How to Click on Google Voice Send Div (Button)?

Post by AndreaW » Mon Oct 10, 2016 7:04 pm

I'm trying to get a macro to work for sending a text message via Google Voice. When I record, it gets all the steps (entering the number, entering the message) fine but it doesn't record me clicking on the Send button, which is not really a button but a div. I'm an iMacro rookie and am looking for suggestions on how to click on the send div.

Here is the HTML code from the Google Voice page:

Code: Select all

<div id=":1p.mi"><div id="gc-quicksms2" class="gc-quicksms" style="">
  <div>Send a text message</div>
  <div class="gc-quickcall-outgoing">
    <div class="gc-bubble-ih">To</div>
    <div>
      <input value="" id="gc-quicksms-number" name="gc-quicksms-number" class="gc-text gc-quickcall-ac" type="text" placeholder="" role="combobox" aria-autocomplete="list" aria-haspopup="false" aria-expanded="false">
      <img alt="Help_dark" class="gc-help-sms gc-help-button" src="/voice/resources/109158364-help_dark.gif" style="margin-bottom: 4px;" title="Click for info">
    </div>
  </div>
  <div class="gc-bubble-subg">
    Enter numbers
  </div>
  <div class="gc-bubble-ih" style="position: relative;">
    Message
    <div id="gc-quicksms-cnt2" class="gc-sms-counter">160</div>
  </div>
  <div>
    <textarea id="gc-quicksms-text2" class="gc-text gc-quicksms-text"></textarea>
  </div>
  <div class="gc-quicksms-ctrl">
    <div id="gc-quicksms-send2" class="goog-inline-block gc-quicksms-send goog-button goog-button-base" role="button" aria-disabled="false" tabindex="0"><div class="goog-inline-block goog-button-base-outer-box"><div class="goog-inline-block goog-button-base-inner-box"><div class="goog-button-base-pos"><div class="goog-button-base-top-shadow">&nbsp;</div><div class="goog-button-base-content">Send</div></div></div></div></div>
    <div style="display: none;" id="gc-quicksms-msg2" class="goog-inline-block gc-quicksms-msg"></div>
  </div>
</div></div>
Here is the macro that I recorded:

Code: Select all

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#sms
TAG POS=7 TYPE=DIV ATTR=TXT:Text
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:gc-quicksms-number CONTENT=45203
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2 CONTENT=Band13
TAG POS=13 TYPE=DIV ATTR=TXT:Send
Thanks for any help.

EDIT: I also tried adding this, which didn't work:

Code: Select all

EVENT TYPE=CLICK SELECTOR="div#gc-quicksms-send2.goog-inline-block.gc-quicksms-send.goog-button.goog-button-base" BUTTON=0
And I tried experimental mode, which didn't work either:

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#sms
EVENT TYPE=MOUSEDOWN SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
EVENT TYPE=MOUSEMOVE SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" POINT="(135,151)"
EVENT TYPE=MOUSEUP POINT="(135,151)"
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" CHARS="45203"
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" BUTTON=0
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" CHARS="Band13"
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0

Also tried with tabbing to the Send button and hitting return. Those didn't work either:

Code: Select all

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#sms
EVENT TYPE=MOUSEDOWN SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
EVENT TYPE=MOUSEMOVE SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" POINT="(121,164)"
EVENT TYPE=MOUSEUP POINT="(121,164)"
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" CHARS="45203"
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=9
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=9
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" CHARS="Band13"
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=9
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV" KEY=9
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV" KEY=13
EVENT TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV" CHAR="\r"
EVENT TYPE=KEYUP SELECTOR="HTML>BODY" KEY=13

Code: Select all

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#sms
TAG POS=7 TYPE=DIV ATTR=TXT:Text
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=52
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:gc-quicksms-number CONTENT=452034
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=52
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=53
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:gc-quicksms-number CONTENT=45
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=53
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=50
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:gc-quicksms-number CONTENT=452
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=50
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=48
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:gc-quicksms-number CONTENT=4520
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=48
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=51
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:gc-quicksms-number CONTENT=45203
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" KEY=51
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=16 MODIFIERS="shift"
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=66 MODIFIERS="shift"
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=B
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=16
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=66
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=65
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Ba
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=65
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=78
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Ban
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=68
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Band
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=78
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=68
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=49
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Band1
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=49
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=51
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Band13
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=51
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" KEY=9
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2&&CLASS:gc-text<SP>gc-quicksms-text&&TXT: CONTENT=Band13
EVENT TYPE=KEYUP SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV" KEY=9
EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(15)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV" KEY=13
EVENT TYPE=KEYUP SELECTOR="HTML>BODY" KEY=13
iimfun
Posts: 239
Joined: Tue Jul 19, 2016 1:06 pm

Re: How to Click on Google Voice Send Div (Button)?

Post by iimfun » Tue Oct 11, 2016 8:57 am

Try this line

Code: Select all

EVENT TYPE=CLICK SELECTOR="div[class='goog-button-base-content']" BUTTON=0
AndreaW
Posts: 3
Joined: Mon Oct 10, 2016 6:53 pm

Re: How to Click on Google Voice Send Div (Button)?

Post by AndreaW » Tue Oct 11, 2016 2:17 pm

iimfun wrote:Try this line

Code: Select all

EVENT TYPE=CLICK SELECTOR="div[class='goog-button-base-content']" BUTTON=0
No runtime errors, but it didn't send the text message.

Code: Select all

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#sms
TAG POS=7 TYPE=DIV ATTR=TXT:Text
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:gc-quicksms-number CONTENT=45203
TAG POS=1 TYPE=TEXTAREA ATTR=ID:gc-quicksms-text2 CONTENT=Band13
TAG POS=13 TYPE=DIV ATTR=TXT:Send
EVENT TYPE=CLICK SELECTOR="div[class='goog-button-base-content']" BUTTON=0
iimfun
Posts: 239
Joined: Tue Jul 19, 2016 1:06 pm

Re: How to Click on Google Voice Send Div (Button)?

Post by iimfun » Wed Oct 12, 2016 8:07 am

Perhaps this "alternative" click may work

Code: Select all

URL GOTO=javascript:mySendButton=document.querySelectorAll("div[class='goog-button-base-content']");mySendButton[mySendButton.length-1].click();
AndreaW
Posts: 3
Joined: Mon Oct 10, 2016 6:53 pm

Re: How to Click on Google Voice Send Div (Button)?

Post by AndreaW » Wed Oct 12, 2016 2:56 pm

That didn't work either. However, I was finally able to get it to work by recording in experimental mode with Use Element Ids and Use CSS Selectors both unchecked. I then had to put some waits in between each step and now it's working. I appreciate all your help!

Code: Select all

VERSION BUILD=844 RECORDER=CR
URL GOTO=https://www.google.com/voice#inbox
WAIT SECONDS=1
EVENT TYPE=MOUSEUP POINT="(140,165)"
WAIT SECONDS=1
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(6)>DIV>TABLE>TBODY>TR>TD>DIV>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
WAIT SECONDS=1
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(16)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(2)>DIV:nth-of-type(2)>INPUT" CHARS="45203"
WAIT SECONDS=1
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(16)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" BUTTON=0
WAIT SECONDS=1
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV:nth-of-type(16)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(5)>TEXTAREA" CHARS="Band13"
WAIT SECONDS=1
EVENT TYPE=MOUSEDOWN SELECTOR="HTML>BODY>DIV:nth-of-type(16)>DIV:nth-of-type(2)>TABLE>TBODY>TR:nth-of-type(2)>TD:nth-of-type(2)>DIV>DIV>DIV:nth-of-type(6)>DIV>DIV>DIV>DIV>DIV:nth-of-type(2)" BUTTON=0
WAIT SECONDS=1
EVENT TYPE=MOUSEUP POINT="(128,368)"
Post Reply