blob: 9a78e2fbb330d8036e098e54cdfe8a5195ceada4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import unittest
import base
class Suite(base.Base):
def test_1(self):
"""Test case 1"""
self.start('main')
reg = self.xpath('button')
# click a couple of times
reg.click()
reg.click()
# we should get HTML spliced into HTML as-is (properly escaped even!)
span = self.xpath('span')
txt = span.text
self.assertRegex(txt, ".*\\(0\\).* :: .*\\(1\\).* :: \\[\\]")
|