(self)
| 74 | self.assertEqual(soup.find(string='Räksmörgås'), 'Räksmörgås') |
| 75 | |
| 76 | def test_unicode_attribute_find(self): |
| 77 | soup = self.soup('<h1 id="Räksmörgås">here it is</h1>') |
| 78 | str(soup) |
| 79 | self.assertEqual("here it is", soup.find(id='Räksmörgås').text) |
| 80 | |
| 81 | |
| 82 | def test_find_everything(self): |