110 Private method to read the forms information. |
110 Private method to read the forms information. |
111 """ |
111 """ |
112 if not self.isStartElement() and self.name() != "Forms": |
112 if not self.isStartElement() and self.name() != "Forms": |
113 return |
113 return |
114 |
114 |
115 # TODO: Passwords: adjust reader to new login form |
|
116 while not self.atEnd(): |
115 while not self.atEnd(): |
117 self.readNext() |
116 self.readNext() |
118 if self.isStartElement(): |
117 if self.isStartElement(): |
119 if self.name() == "Form": |
118 if self.name() == "Form": |
120 from .LoginForm import LoginForm |
119 from .LoginForm import LoginForm |