Skip to content

Instantly share code, notes, and snippets.

View yvdhi's full-sized avatar
💭
just wasting time until the next apocalypse

yudhi pratomo yvdhi

💭
just wasting time until the next apocalypse
View GitHub Profile

API workthough

  1. Open a browser

    # start an instance of firefox with selenium-webdriver
    driver = Selenium::WebDriver.for :firefox
    # :chrome -> chrome
    # :ie     -> iexplore
    
  • Go to a specified URL
@yvdhi
yvdhi / Selenium Cheat Sheet.md
Created April 8, 2020 00:23 — forked from kenrett/Selenium Cheat Sheet.md
Selenium Cheat Sheet - Ruby

#Getting Started

##Webpage:

<html>
<head>
    <title>Testing with Ruby and Selenium WebDriver</title>
</head>
 
<body bgcolor="antiquewhite">
@yvdhi
yvdhi / AdbCommands
Created April 8, 2020 00:23 — 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