0

サイトhttp://www.tthfanfic.org/login.phpへのログインを自動化しようとしています。

私が抱えている問題は、パスワード フィールドにランダムに生成された名前があることです。そのラベル、タイプ、ID を使用してみましたが、それらはすべて静的なままですが、役に立ちませんでした。

フォームの HTML は次のとおりです。

<tr>
    <th><label for="urealname">User Name</label></th>
    <td><input type='text' id='urealname' name='urealname' value=''/> NOTE: Your user name may not be the same as your pen name.</td>
</tr>
<tr>
    <th><label for="password">Password</label></th><td><input type='password' id='password' name='e008565a17664e26ac8c0e13af71a6d2'/></td>
</tr>
<tr>
    <th>Remember Me</th><td><input type='checkbox' id='remember' name='remember'/>
<label for="remember">Log me in automatically for two weeks on this computer using a cookie. </label> Do not select this option if this is a public computer, or you have an evil sibling.</td>
</tr>
<tr>
    <td colspan='2' style="text-align:center">
        <input type='submit' value='Login' name='loginsubmit'/>
    </td>
</tr>

読みやすくするためにフォーマットしようとしましたが、それでも見栄えが悪いです。提供されたページのコードを確認することを検討してください。

これは、機械化を介してフォームを印刷するときに取得するコードです。

<POST http://www.tthfanfic.org/login.php application/x-www-form-urlencoded

  <HiddenControl(ctkn=a40e5ff08d51a874d0d7b59173bf3d483142d2dde56889d35dd6914de92f2f2a) (readonly)>

  <TextControl(urealname=)>

  <PasswordControl(986f996e16074151964c247608da4aa6=)>

  <CheckboxControl(remember=[on])>

  <SubmitControl(loginsubmit=Login) (readonly)>>

PasswordControl の番号シーケンスは、ページをリロードするたびに変化する部分です。サイトの HTML には、それに起因する他のタグがいくつかあるようですが、それらを選択しようとしても機能しません。私はそれを間違ってやっています。

ラベルでコントロールを選択しようとするために使用しているコードは次のとおりです。

fieldTwo = br.form.find_control(label='password')

    br[fieldOne] = identifier

    br[fieldTwo] = password

必要に応じて残りのログイン コードを投稿できますが、これが機能していない唯一の部分です。パスワード名が同じままである他のサイトで成功しました。

それで、ラベル、タイプ、またはIDを使用してpasswordControlを選択することは可能ですか、それとも名前をスクレイピングする必要がありますか?

編集:おっと、エラーメッセージを追加するのを忘れました:

raise ControlNotFoundError("no control matching "+description)

mechanize._form.ControlNotFoundError: no control matching label 'password'

解決済み:

reddit の男からの解決策、Bliti に感謝します。

作業コード:

br.select_form(nr=2)
list = []
    for f in br.form.controls:           
        list.append(f.name)
    fieldTwo = list[2]
4

1 に答える 1

0

reddit の男からの解決策、Bliti に感謝します。

作業コード:

#Select the form you want to use.
br.select_form(nr=2)
list = []
    for f in br.form.controls: 
        #Add the names of each item in br.formcontrols          
        list.append(f.name)
    #Select the correct one from the list.
    fieldTwo = list[2]
于 2013-09-19T16:36:18.723 に答える