Skip to content

Instantly share code, notes, and snippets.

View prajapati-hitesh's full-sized avatar
🏠
Working from home

Hitesh Prajapati prajapati-hitesh

🏠
Working from home
View GitHub Profile
// XPath CheatSheet
// To test XPath in your Chrome Debugger: $x('/html/body')
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/
// 0. XPath Examples.
// More: http://xpath.alephzarro.com/content/cheatsheet.html
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class
@prajapati-hitesh
prajapati-hitesh / AdbCommands
Created June 6, 2021 08:17 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader