aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/fact.py
blob: 3dcd6f7199033fd247d7d013a3191b57328ecd18 (plain)
1
2
3
4
5
6
7
8
9
10
import unittest
import base

class Suite(base.Base):
    def test_1(self):
        """Test case 1"""
        self.start()
        b = self.driver.find_element_by_xpath('/html/body')
        self.assertEqual('3628800, 3628800', b.text)