aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/activeBlock.py
blob: d0e43fdbc7240fd4018979efe4938b0c8252be9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import unittest
import base
import time 

class Suite(base.Base):
    def test_1(self):
        """Test case 1"""
        self.start()
        alert = self.driver.switch_to.alert
        self.assertEqual("Error: May not 'sleep' in main thread of 'code' for <active>", alert.text)
        alert.accept()
        time.sleep(0.1)
        alert = self.driver.switch_to.alert
        self.assertEqual("Hi!", alert.text)
        alert.accept()
        button = self.xpath('span[1]/button')
        button.click()
        txt = self.body_text()
        self.assertEqual("Hi! Click me! Success", txt)