This file contains hidden or 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
| # https://swdandruby.wordpress.com/2013/07/19/did-i-select-the-right-element/ | |
| def highlight element, time = 3 | |
| orig_style = element.attribute("style") | |
| @driver.execute_script("arguments[0].setAttribute(arguments[1], arguments[2])", element, "style", "border: 2px solid yellow; color: yellow; font-weight: bold;") | |
| if time > 0 | |
| sleep time | |
| @driver.execute_script("arguments[0].setAttribute(arguments[1], arguments[2])", element, "style", orig_style) | |
| end | |
| end |
This file contains hidden or 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
| def changeitarray(amount) | |
| arr = [] | |
| #amount is set by the caller | |
| (1..amount).each do | |
| #call the block that was sent to me. | |
| a = yield(rand(100)) | |
| #Yield should return the value I expect, if it doesn't I'll break | |
| #In this case, the passed in block should return a string |
This file contains hidden or 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
Show hidden characters
| { | |
| "#theme": "Soda Dark.sublime-theme", | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| "font_size": 12.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 2, | |
| "theme": "Nexus.sublime-theme", |
NewerOlder