Skip to content

Instantly share code, notes, and snippets.

View trinhpham's full-sized avatar
🇻🇳
A lot of things here 👯‍♂

Trình Phạm trinhpham

🇻🇳
A lot of things here 👯‍♂
View GitHub Profile
[HTTP] --> GET /wd/hub/session/f18bcfc9-f8f1-444c-8436-bb2aac50844a/contexts
[HTTP] {}
[debug] [W3C (f18bcfc9)] Calling AppiumDriver.getContexts() with args: ["f18bcfc9-f8f1-444c-8436-bb2aac50844a"]
[debug] [XCUITest] Executing command 'getContexts'
[debug] [iOS] Getting list of available contexts
[debug] [iOS] Retrieving contexts and views
[debug] [XCUITest] Selecting by url: false
[debug] [RemoteDebugger] Selecting application
[debug] [RemoteDebugger] Current applications available:
[debug] [RemoteDebugger] Application: 'PID:2527'
[HTTP] --> GET /wd/hub/session/54f250eb-5274-4a3a-92f9-0a6b1e65d5e5/contexts
[HTTP] {}
[debug] [W3C (54f250eb)] Calling AppiumDriver.getContexts() with args: ["54f250eb-5274-4a3a-92f9-0a6b1e65d5e5"]
[debug] [XCUITest] Executing command 'getContexts'
[debug] [iOS] Getting list of available contexts
[debug] [iOS] Retrieving contexts and views
[debug] [XCUITest] Selecting by url: false
[debug] [RemoteDebugger] Sending connection key request
[debug] [RemoteDebugger] Sending '_rpc_reportIdentifier:' message (id: 1)
[debug] [RemoteDebugger] Sending to Web Inspector took 7ms
@trinhpham
trinhpham / submit.md
Created September 10, 2018 08:12 — forked from tanaikech/submit.md
Downloading Shared Files on Google Drive Using Curl

Downloading Shared Files on Google Drive Using Curl

When the shared files on Google Drive is downloaded, it is necessary to change the download method by the file size. The boundary of file size when the method is changed is about 40MB.

File size < 40MB

CURL

filename="### filename ###"
fileid="### file ID ###"
curl -L -o ${filename} "https://drive.google.com/uc?export=download&amp;id=${fileid}"