-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By ChipConnJohn
Hello all,
I'm trying to create a webscrape script using AutoIt. A non-profit I'm involved with is using GroupSpaces.com and there is no notification to the group when someone posts a new topic to the forum. I'm including IE.au3
#include <MsgBoxConstants.au3>
#include <Array.au3>
#include <String.au3>
; Open Groupspaces.com
Global $oIE = _IECreate ("http://www.groupspaces.com")
_IENavigate($oIE,"http://groupspaces.com/MyCrazyTest/forum/")
;Grab all the links on the Forum page
Global $oLinksCategoryPage = _IELinkGetCollection($oIE)
For $oLink In $oLinksCategoryPage
Local $oLinkHRef = $oLink.href
If StringInStr($oLinkHRef,"forum_id") Then
;This is a category. Click into it.
_IENavigate($oIE,$oLinkHRef)
Sleep(3)
;Back out to Category List
_IEAction($oIE,"back")
EndIf
Next
_IEQuit($oIE)
-
By AutoBert
I have a NDIS based Internet sharing device. I got info about my balance inquiry by clicking a button, it's sending ussd *101# to my provider. This was ok in past but no i have changed provider, all other functions are ok, but new provider uses *100# as valid ussd for geting balance inquiry. So i used
#include <IE.au3> $oIE=_IECreate('http://192.168.8.1/html/ussd.html') $sHTML=_IEDocReadHTML($oIE) $sHTML=StringReplace($sHTML,'101#','100#') _IEDocWriteHTML($oIE,$sHTML) to get it. But with this script i can't get the info. It replaces correct in
<div id="fun_balanceInquiry" style="display: block;"> <div class="ussd_extend_border"><p><label id="balance_inquiry_description0">Auf Guthaben drücken, um Informationen über Ihr Guthaben zu erhalten.</label></p> <table width="500" border="0" cellspacing="0" cellpadding="0"> <tbody><tr><td height="40" class="cls_ussd_label_BalanceInquiry_action"> <label id="balance_inquiry_result0"></label></td> <td class="align_right" id="balance_inquiry_action0"><span class="button_wrapper" id="#BalanceInquiry0" onclick="javascript:ussd_sendCommand('BalanceInquiry0','*101#','CodeType', 'undefined');return false;"><span class="button_left"><span class="button_right"><span class="button_center">Guthaben</span></span></span></span></td> </tr></tbody></table></div></div> <div id="fun_charge" style="display: none;"> </div> but it seems this included script:
<script src="../js/ussd.js" type="text/javascript"></script> is called. In DOM Explorer i see:
function onclick(event) { javascript:ussd_sendCommand('BalanceInquiry0','*101#','CodeType', 'undefined');return false; } but i can't write a changed ussd.js back to my internet stick.
So my question is how can i change htmlcode in a way calling function onclick with new ussd command?
-
By avidovi
Hello Friends,
I need your advise automating Facebook search project.
I need to enter a string in a search input box, the inspect element shows me this code:
<input name="query" class="inputtext" aria-required="true" aria-label="Search" required="1" type="text" maxlength="100" placeholder="Search this group" value="" autocomplete="off"> How to treat it? as a form? as an IE object?
Really appreciating your help.
-
By AnakondaSK
Hello guys,
I want script that locate text box on webpage and write text in it, problem is that, that website is changing their ID of text boxes.
The last few digits of ID(highlighted yellow one) is changing every single time, so i would like to ask if there is way how to solve this. /// It is possible to use only part of ID to localize the text box ?
Thanks