-
Open a browser
# start an instance of firefox with selenium-webdriver driver = Selenium::WebDriver.for :firefox # :chrome -> chrome # :ie -> iexplore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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%} |
