Skip to content

Instantly share code, notes, and snippets.

View shoesCodeFor's full-sized avatar

Schuyler Ankele shoesCodeFor

View GitHub Profile
.css-selector {
    background: linear-gradient(270deg, #442466, #24665f);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    -o-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
@shoesCodeFor
shoesCodeFor / 1.png
Created August 29, 2018 20:23 — forked from jeffkreeftmeijer/1.png
Delta-E image diff
1.png
@shoesCodeFor
shoesCodeFor / selenium-webdriver-cheatsheet.md
Last active November 14, 2024 00:54 — forked from huangzhichong/selenium-webdriver-cheatsheet.md
Ruby Selenium Webdriver CheatSheet

API workthough

  1. Open a browser

    # start an instance of firefox with selenium-webdriver
    driver = Selenium::WebDriver.for :firefox
    # :chrome -> chrome
    # :ie     -> iexplore