2

I want to search a form but get the error 'NoneType' object has no attribute

<form method="POST" action="liste.php">
          <input size="20" id="searchfield" maxlength="100" name="suche" onchange="clear_input();" accesskey="s" title="Bitte beachten Sie, dass die Suchanfrage mindestens 3 Zeichen lang sein muss!">
          <input type="submit" value="" class="gosearch">
        </form>

My python code is:

# Search the Website
formSearch = browser.get_form(action=('/liste.php'))
formSearch['suche'].value = 'Maus'
browser.submit_form(formSearch)
4

1 に答える 1

1

HTML は、先頭のスラッシュなしで、action属性が に設定されていることを示しています。'liste.php'それを一致させる必要があります:

formSearch = browser.get_form(action='liste.php')
于 2015-03-19T13:06:47.490 に答える