Login_GoogleAccount

Googleアカウントへログインする

Googleアカウントログインフォーム

<input name="Email" id="Email" type="text" spellcheck="false"/>

<input name="Passwd" id="Passwd" type="password"/>

<input name="signIn" class="g-button g-button-submit" id="signIn" type="submit" value="ログイン"/>

スクリプト例:id属性で指定

/*カスタム関数使用*/

変数を設定 [$er; 値:

ie_Navigate_Create ( "https://accounts.google.com/Logout?" ; 1 ) & 

ie_Wait4ie & 

ie_SetInputValueById ( "Email" ; "Googleアカウント" ) & 

ie_SetInputValueById ( "Passwd" ; "パスワード" ) & 

ie_ClickById ( "signIn" )

]

スクリプト例:name属性で指定

/*カスタム関数使用*/

変数を設定 [$er; 値:

ie_Navigate_Create ( "https://accounts.google.com/Logout?" ; 1 ) & 

ie_Wait4ie & 

ie_SetInputValueByName ( "Email" ; 0 ; "googleアカウント ) & 

ie_SetInputValueByName ( "Passwd" ; 0 ; "パスワード ) & 

ie_ClickByName ( "signIn" ; 0 )

]