11 lines
272 B
Python
11 lines
272 B
Python
#coding=utf-8
|
|
|
|
from seleniumrequests import Firefox
|
|
import unittest
|
|
|
|
webdriver =Firefox()
|
|
response=webdriver.request('post','http://192.168.2.100/farm/home/web/index.php?r=user/login',params={'username':'zn','password':'123456'})
|
|
|
|
print(response.content)
|
|
|
|
webdriver.quit() |