Skip to content
AutoHotKey
2011.02.11 23:24

Com_invoke to login

조회 수 10712 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄


Com_invoke to login


AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
AuthorMessage
bacon117



Joined: 26 May 2010
Posts: 18

PostPosted: Thu Jun 03, 2010 8:54 pm    Post subject: Com_invoke to loginReply with quote

Hello erbody. 

Hopefully someone can help me with this. By studying tanks awesome com tutorial (http://www.autohotkey.com/forum/topic34972.html) I have learned a few things. 

I have figured out how to push the username and pw into the website, and I can click buttons on other websites, but I cannot figure out how to click the "Log in" button on my particular site. I can make it work with Focus-> {enter}, but I would like to leave the page hidden until it is logged in. Here is the DOM of http://www.covisint.com/web/guest/login-manufacturing : 
Code (Expand):
<LINK rel="stylesheet" type="text/css" href="/www-main-theme/css/portal_login.css" />
<SCRIPT type="text/javascript"> 
/*<![CDATA[*/jQuery(function(){var a="p_p_id_56_INSTANCE_q44R_";tmpFm=jQuery("form[name="+a+"tmpLogin]"),loginFm=jQuery("form[name="+a+"login]"),tmpUser=jQuery("input[name=user]",tmpFm),tmpPw=jQuery("input[name=password]",tmpFm),user=jQuery("input[name=user]",loginFm),pw=jQuery("input[name=password]",loginFm),time=jQuery("input[name=submitTime]",loginFm);tmpUser.focus();tmpFm.submit(function(c){if(tmpUser.val().length==0){alert("Please enter a User Name");tmpUser.focus()}else{if(tmpPw.val().length==0){alert("Please enter Password");tmpPw.focus()}else{user.val(tmpUser.val().toUpperCase());pw.val(tmpPw.val());time.val((new Date).getTime());var b=new Cookie("defaultLogin");b.industry="manufacturing";b.store(90,"/");loginFm.submit()}}return false})});/*]]>*/
</SCRIPT>
</P>
<FORM method="post" name="p_p_id_56_INSTANCE_q44R_login" action="https://us.sso.covisint.com/sso?cmd=LOGIN">
<INPUT type="hidden" name="auth_mode" value="basic" /><INPUT type="hidden" name="user" value="" /><INPUT type="hidden" name="password" value="" /><INPUT type="hidden" name="submitTime" value="" /> 
</FORM>
<DIV class="portalLogin">
<H2>
Secure Login
</H2>
<DIV class="portalLoginPanel">
<DIV class="portalLoginPanelContent">
<FORM name="p_p_id_56_INSTANCE_q44R_tmpLogin" jQuery1275595950703="9">
<FIELDSET>
<LEGEND>Manufacturing <SPAN>Login</SPAN></LEGEND>
<OL>
<LI>
<LABEL for="p_p_id_56_INSTANCE_q44R_user">User Name</LABEL> <INPUT id="p_p_id_56_INSTANCE_q44R_user" class="field" name="user" jQuery1275595950703="8" index="1" value="" />
</LI>
<LI>
<LABEL for="p_p_id_56_INSTANCE_q44R_password">Password</LABEL> <INPUT id="p_p_id_56_INSTANCE_q44R_password" class="field" type="password" name="password" index="2" value="" />
</LI>
<LI>
<LABEL>&nbsp;</LABEL> <INPUT class="loginButton" type="submit" index="3" value=" " />
</LI>
</OL>
</FIELDSET>
 
</FORM>
<!-- Manufacturing -->

Using this information, I have come up with these two entries to push the user name and PW to this site (both work): 
Code:
   COM_Invoke(itemq:=COM_Invoke(all1:=COM_Invoke(document:=COM_Invoke(pwb,"document"),"All"),"item","p_p_id_56_INSTANCE_q44R_user"),"value",covuser) 
   
   COM_Invoke(item62:=COM_Invoke(all2:=COM_Invoke(document:=COM_Invoke(pwb,"Document"),"All"),"item","p_p_id_56_INSTANCE_q44R_password"),"value",covpw) 
   

But now, how do I click the link. This seems to be the code for the button: 
<LABEL>&nbsp;</LABEL> <INPUT class="loginButton" type="submit" index="3" value=" " /> 
but there is no name or id for me to select and then "click". 

I have tried these with no luck: 


Code:
;1.)
COM_Invoke(itemsubmit:=COM_Invoke(all3:=COM_Invoke(document:=COM_Invoke(pwb,"Document"),"All"),"item","submit"),"submit") 

   
;2.)   ;COM_Invoke(document, "p_p_id_56_INSTANCE_q44R_tmpLogin", "click")



;3.)
;   pbuttons := COM_Invoke(document, "getElementsByTagName", "submit") 
;   ; use loop to find the right button ->pbutton 
;     COM_Invoke(pbutton, "click")
;   
;4.)
;   COM_Invoke(itemsubmit:=COM_Invoke(all3:=COM_Invoke(document:=COM_Invoke(pwb,"Document"),"All"),"getElementsbytagname","submit"),"click") 


Any ides or other clarification?
Back to top
View user's profile Send private message 
bacon117



Joined: 26 May 2010
Posts: 18

PostPosted: Thu Jun 03, 2010 9:20 pm    Post subject:Reply with quote

I have had some moderate sucess using the name of the input form. But when I run the script, it submits nothing to the website, and I get "invalid user name or password": 

Code:
COM_Invoke(itemsubmit:=COM_Invoke(all3:=COM_Invoke(document:=COM_Invoke(pwb,"Document"),"All"),"item","p_p_id_56_INSTANCE_q44R_Login"),"submit")


Again, here is the code of the form: 

Code (Expand):
link href="/www-main-theme/css/portal_login.css" type="text/css" rel="stylesheet" /><script type="text/javascript">/*<![CDATA[*/jQuery(function(){var a="p_p_id_56_INSTANCE_q44R_";tmpFm=jQuery("form[name="+a+"tmpLogin]"),loginFm=jQuery("form[name="+a+"login]"),tmpUser=jQuery("input[name=user]",tmpFm),tmpPw=jQuery("input[name=password]",tmpFm),user=jQuery("input[name=user]",loginFm),pw=jQuery("input[name=password]",loginFm),time=jQuery("input[name=submitTime]",loginFm);tmpUser.focus();tmpFm.submit(function(c){if(tmpUser.val().length==0){alert("Please enter a User Name");tmpUser.focus()}else{if(tmpPw.val().length==0){alert("Please enter Password");tmpPw.focus()}else{user.val(tmpUser.val().toUpperCase());pw.val(tmpPw.val());time.val((new Date).getTime());var b=new Cookie("defaultLogin");b.industry="manufacturing";b.store(90,"/");loginFm.submit()}}return false})});/*]]>*/</script></p>
<form method="POST" action="https://us.sso.covisint.com/sso?cmd=LOGIN" name="p_p_id_56_INSTANCE_q44R_login">
    <input type="hidden" value="basic" name="auth_mode" /><input type="hidden" name="user" /><input type="hidden" name="password" /><input type="hidden" value="" name="submitTime" />
</form><div class="portalLogin">
<h2>Secure Login</h2>
<div class="portalLoginPanel">
<div class="portalLoginPanelContent">
<form name="p_p_id_56_INSTANCE_q44R_tmpLogin">
    <fieldset>                     <legend>Manufacturing <span>Login</span></legend>
    <ol>
        <li><label for="p_p_id_56_INSTANCE_q44R_user">User Name</label>                             <input type="text" index="1" name="user" id="p_p_id_56_INSTANCE_q44R_user" class="field" /></li><li><label for="p_p_id_56_INSTANCE_q44R_password">Password</label>                             <input type="password" index="2" name="password" id="p_p_id_56_INSTANCE_q44R_password" class="field" /></li><li><label> </label>                             <input type="submit" index="3" value=" " class="loginButton" /></li></ol>
    </fieldset>
</form><!-- Manufacturing -->
Back to top
View user's profile Send private message 
sinkfaze



Joined: 18 Mar 2008
Posts: 3612
Location: the tunnel(?=light)

PostPosted: Thu Jun 03, 2010 10:30 pm    Post subject:Reply with quote

tank's tutorials are a little dated, as the syntax for using COM has been greatly simplified by using the "dotted path": 

Code:
COM_Invoke(itemq:=COM_Invoke(all1:=COM_Invoke(document:=COM_Invoke(pwb,"document"),"All"),"item","p_p_id_56_INSTANCE_q44R_user"),"value",covuser) ; <~ old method

COM_Invoke(pwb,"document.all.item[p_p_id_56_INSTANCE_q44R_user].value",covuser) ; <~ new method
    
COM_Invoke(item62:=COM_Invoke(all2:=COM_Invoke(document:=COM_Invoke(pwb,"Document"),"All"),"item","p_p_id_56_INSTANCE_q44R_password"),"value",covpw) ; <~ old method

COM_Invoke(pwb,"document.all.item[
p_p_id_56_INSTANCE_q44R_password].value",covpw) ; <~ new method


Using that will cut down on a great deal of confusion for you and for others trying to assist you. But alas, I digress... 

You could of course submit the form directly, but the key to making the button work is to find out information about your button: 

Code:
<input type="submit" index="3" value=" " class="loginButton" />


You'll notice that the button doesn't have anything readily identifiable for it like a name or id, which will allow us the easiest access to it. The next easiest thing to do will be to determine how many buttons are on the page. We can't immediately distinguish buttons but we can distinguish how many page elements with its root HTML tag 'input' exist by using the length collection: 

Code:
COM_Invoke(pwb,"document.all.tags[input].length")


Saving the result of that function call to a variable will tell you how many elements with the input tag are on the page: 

Code:
p := COM_Invoke(pwb,"document.all.tags[input].length")
MsgBox, %p% input elements.


This is valuable information because we can now create a loop that will only run for as many input elements as there are on the page. But what do we look for? We know this particular input element's type is submit: 

Code:
<input type="submit" index="3" value=" " class="loginButton" />


So that's how we'll look for it, look at only input elements whose type is submit: 

Code:
p := COM_Invoke(pwb,"document.all.tags[input].length")
Loop %p%
{
  t := COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].type") ; item collections are zero-based indices (first item is item 0, second is 1, etc.)
. . .


The problem is that there may be multiple input items of type 'submit', so what else can uniquely match our button? The next likely suspect is the class: 

Code:
<input type="submit" index="3" value=" " class="loginButton" />


Now the class is kind of tricky because there is no class property of an item per se, but a className property: 

Code:
p := COM_Invoke(pwb,"document.all.tags[input].length")
Loop %p%
{
  c := COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].className")
. . .


So now we have two items which should reasonably identify our button, so we just have to use the loop to search for them! 

Code:
p := COM_Invoke(pwb,"document.all.tags[input].length")
Loop %p%
{
  t := COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].type") 
  c := COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].className")
  if (t="submit") AND (c="loginButton") { ; if both things about the input element match
    COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].click") ; click on the element
    break ; and break the loop
  }
}


Having worked with COM in this way for a while I write it slightly differently: 

Code:
Loop %   COM_Invoke(pwb,"document.all.tags[input].length") {
   if   (COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].type")="submit")
    &&   (COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].className")="loginButton") {
      COM_Invoke(pwb,"document.all.tags[input].item[" A_Index-1 "].click")
      break
   }
}


HTH
_________________
Try Quick Search for Autohotkey or see the tutorial for newbies.
Back to top
View user's profile Send private message 
bacon117



Joined: 26 May 2010
Posts: 18

PostPosted: Fri Jun 04, 2010 11:59 pm    Post subject:Reply with quote

Thank you very much, your post is very easy for me to understand, but more importantly, it works. Smile 

sinkfaze wrote:
You could of course submit the form directly,


How do I submit the form directly? The website runs a Java code locally that sanitizes the inputs (makes sure the fields are not blank), capitalizes the username, and then also submits a "SubmitTime" with the current date and time to the server. It may do other things that I don't understand. This code is the reason I wanted to click the button in the first place 

How do I submit the form directly and bypass this code? 

BTW, here is the code I refer to, I suspect it has something to do with the *loginFm.submit()* at the bottom, but i'm not sure how to use it: 

Code:
<SCRIPT type="text/javascript"> 
/*<![CDATA[*/jQuery(function(){var a="p_p_id_56_INSTANCE_q44R_";tmpFm=jQuery("form[name="+a+"tmpLogin]"),loginFm=jQuery("form[name="+a+"login]"),tmpUser=jQuery("input[name=user]",tmpFm),tmpPw=jQuery("input[name=password]",tmpFm),user=jQuery("input[name=user]",loginFm),pw=jQuery("input[name=password]",loginFm),time=jQuery("input[name=submitTime]",loginFm);tmpUser.focus();tmpFm.submit(function(c){if(tmpUser.val().length==0){alert("Please enter a User Name");tmpUser.focus()}else{if(tmpPw.val().length==0){alert("Please enter Password");tmpPw.focus()}else{user.val(tmpUser.val().toUpperCase());pw.val(tmpPw.val());time.val((new Date).getTime());var b=new Cookie("defaultLogin");b.industry="manufacturing";b.store(90,"/");loginFm.submit()}}return false})});/*]]>*/
</SCRIPT>
Back to top
View user's profile Send private message 


















로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
917 프로세스 프로세스 2 3 2011.02.07 312176
916 WindowsTip 윈도우 DLL 오류 해결방법 2013.01.23 192702
915 컴퓨터잡담 자바스크립트로 전송(submit) 버튼 누르기 3 2010.10.10 103644
914 컴퓨터잡담 hMailServer - 설치시 주의 핵심사항 1 2010.08.24 103068
913 컴퓨터잡담 북마크 링크 주소모음 2010.10.30 102936
912 컴퓨터잡담 파이썬 request, beautifulshop으로 정액정보 받아오기 2023.09.29 79241
911 파이썬 파이썬에서 인식이 잘되는 OCR 종류 2023.09.15 78874
910 파이썬 파이썬 랜덤으로 문제풀기 #2 2023.10.04 78724
909 파이썬 한우경매낙찰 유튜브 영상의 이미지에서 특정 문자 가져와서 저장하기 2023.09.14 78098
908 컴퓨터잡담 CANON PRINTER ERROR CODE B203, B204 해결방법 2023.09.17 78005
907 파이썬 파이썬 랜덤으로 시험문제 풀기 file 2023.10.04 74766
906 파이썬 파이썬 requestsbeautifulsoup 으로 웹 input에 입력값 대입한 뒤 결과값 파일로 저장하기 2023.11.13 66647
905 컴퓨터잡담 엑셀 색깔 지정 함수 1 2010.07.28 65610
904 컴퓨터잡담 MYSQL 미 해결 과제 : Can't connect to MySQL server on 'localhost'(10055) 3 3 2009.11.21 64234
903 컴퓨터잡담 php로 이미지를 mysql디비 저장하고 보여주는 소스 4 3 2009.10.17 62322
902 컴퓨터잡담 여러개의 엑셀파일을 하나로 합치기 2 2010.06.22 57410
901 HTMLPHPMSQL 지정한 이미지파일명을 출력 시키는 시험문제풀이 html 1 2023.12.13 56639
900 컴퓨터잡담 오류 socket error #10061 connection 3 2 2010.09.25 54127
899 AutoHotKey AHK) AUTOKEY 웹페이지 열지않고 소스 가져오기 또는 로그인 하기 14 2012.05.12 52954
898 Visual C++ VBS) VBScript Telnet log save 2013.09.21 51931
Board Pagination Prev 1 2 3 4 5 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소