一篇很是好的分析 Selenium 2 和 3 的原理: selenium3:你安裝 geckodriver 了嗎?

轉自:https://testerhome.com/topics/10248javascript

 

另外一篇:Selenium WebDriver的工做原理css

https://blog.csdn.net/yoyocat915/article/details/80246744

須要注意的是,這一篇中提到「瀏覽器驅動中包含了一個HTTP Server,用來接收這些http請求 」,那麼根據上面的文章,好像應該不是一個 http server, 而是 WebDriver.xpi 插件
html

 

又一篇:Webdriver實現原理java

 

https://blog.csdn.net/kellyruan/article/details/41647573

 

再一篇:appium ,selenium ,webdriver 運行原理與機制 web

https://www.cnblogs.com/Ronaldo-HD/p/9848324.html
 

 

 

 下面這篇文章記錄了 WebDriver 使用 JSON Wire Protocol 和 http server 交互的實質:
chrome

 

https://www.jianshu.com/p/zcB9ai

 

做者:myersguo
連接:https://www.jianshu.com/p/zcB9ai
來源:簡書

 

WebDriver之JsonWireProtocol###

JsonWireProtocol說明
JsonWireProtocol(如下簡稱JWP)是經過使用webdriver與remote server進行通訊的web service 協議。經過http請求,完成和remote server的交互。瀏覽器

交互過程
下面,我將列出一系列http請求,利用JSP和remote server進行通訊,來進行瀏覽器操做。(注:書寫格式爲:GET URL 參數)session

1. 打開瀏覽器
即,建立一個新的browser session。
POST http://10.236.122.10:4444/wd/hub/session
{desiredCapabilities:{browserName: 'chrome' }}
結果返回:app

{
"status": 0,
"sessionId": "277e823a-8be2-48eb-9001-971cc1bff9c4",
"state": null,
"value": {
"platform": "XP",
"acceptSslCerts": true,
"javascriptEnabled": true,
"browserName": "chrome",
"chrome": {
"userDataDir": "C:\Users\GUOLIA~1\AppData\Local\Temp\scoped_dir4600_564"
},
"rotatable": false,
"locationContextEnabled": true,
"webdriver.remote.sessionid": "277e823a-8be2-48eb-9001-971cc1bff9c4",
"version": "41.0.2272.118",
"takesHeapSnapshot": true,
"cssSelectorsEnabled": true,
"databaseEnabled": false,
"handlesAlerts": true,
"browserConnectionEnabled": false,
"nativeEvents": true,
"webStorageEnabled": true,
"applicationCacheEnabled": false,
"takesScreenshot": true
},
"class": "org.openqa.selenium.remote.Response",
"hCode": 28232762
}post

記住上面返回的
"sessionId": "277e823a-8be2-48eb-9001-971cc1bff9c4"
2. 打開一個url
好比,打開百度首頁:

POST
http://10.236.122.10:4444/wd/hub/session/277e823a-8be2-48eb-9001-971cc1bff9c4/url
{url :'http://www.baidu.com' }

3. 查找輸入框

POST
http://10.236.122.10:4444/wd/hub/session/277e823a-8be2-48eb-9001-971cc1bff9c4/elements
{using:'css selector',value:'#kw'}

返回:
{
"status": 0,
"sessionId": "b6d34570-8300-4507-b60c-ab7cd1fe6536",
"state": "success",
"value": [
{
"ELEMENT": "0"
}
],
"class": "org.openqa.selenium.remote.Response",
"hCode": 30641031
}
記住返回值, 下面要用。
"ELEMENT": "0"
4. 輸入元素

POST
http://10.236.122.10:4444/wd/hub/session/277e823a-8be2-48eb-9001-971cc1bff9c4/element/0/value
{value:[hello,world]}

*** 5. 查找OK按鈕***
http://10.236.122.10:4444/wd/hub/session/277e823a-8be2-48eb-9001-971cc1bff9c4/elements
{using:'css selector',value:'#su'}
4. 點擊OK
http://10.236.122.10:4444/wd/hub/session/277e823a-8be2-48eb-9001-971cc1bff9c4/element/1/click

返回點擊成功了: { "status": 0, "sessionId": "277e823a-8be2-48eb-9001-971cc1bff9c4", "state": "success", "value": null, "class": "org.openqa.selenium.remote.Response", "hCode": 11068806 }

相關文章
相關標籤/搜索