Skip to content

Instantly share code, notes, and snippets.

View YmerejRedienhcs's full-sized avatar

Jeremy Schneider YmerejRedienhcs

  • Esri
  • Arlington, Virginia, USA
View GitHub Profile
# Ways to execute a shell script in Ruby
# Example Script - Joseph Pecoraro
cmd = "echo 'hi'" # Sample string that can be used
# 1. Kernel#` - commonly called backticks - `cmd`
# This is like many other languages, including bash, PHP, and Perl
# Returns the result of the shell command
# Docs: http://ruby-doc.org/core/classes/Kernel.html#M001111
@YmerejRedienhcs
YmerejRedienhcs / Selenium Cheat Sheet.md
Created March 3, 2017 17:43 — 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">