test_search_org.py 434 Bytes

 # Author: jipeihong 2017年11月7日11:22:08

from atdd.PcPost import PcPost

class SearchOrg(PcPost):
    def setUp(self):
        self.do_login(self.host, self.mobile, self.psw, self.domain)

    def test_search_org(self):
        interfaceUrl = "/contact/Apicp/Department/Search"
        data = {
            "keyword": 123
        }
        result = self.PcPost(interfaceUrl,data)
        print(result)
        return result