Andrew Yurisich
Andrew Yurisich
Copy this file to your desktop and double click it, Grandma.
After searching for how to [apply default values for function parameters](http://stackoverflow.com/a/8660833/881224), I was pointed to a great example of [some code here](https://github.com/Raynes/clavatar/commit/9fea6689ba4d08da5912238173c080f501475a78#L3R18). I am quite new to the language, so...
[It's advertised, but not implemented](https://github.com/Droogans/ProtractorPageObjects/blob/chapter-2/test/pages/Base.js#L19) Include: - lots of screenshots - Chrome's `cmd+option+i` interface, and the console that's shown by pressing `esc`. - common types of selectors (`.`, `#`, `=^[]`,...
Nobody reads books. `:/` Feedback is that the master branch looks nice, but chapters are not being read. Put highlights front and center, condense everything into how, not so much...
``` 8: 'test' >>> 'test' 9: 'test' >>> 'test' 10: 'test' >>> 'test' 11: 'test' ``` I would like the output to remain in line with the beginning of the...
I am fond of this: ```bash HELP_TEXT="Usage: [-f|--foo-bar] [-o] baz" for i in "$@" do case $i in -f=*|--foo-bar=*) FOOBAR=" --other-scripts-flag=${i#*=}" shift # past argument=value ;; -o) OTHER=" -o" shift...
This is how it looks now. ``` js 'dataField': 'Name', 'sortField': 'Name' ``` This will use sorting by the data in the data field matching `Name`. This is because you...
Reproduction steps: - Create a table with 20+ rows in it - Set "Items per Page" to something other than 10 - Go to the next page The rest of...
When I include a table column config such as the following: ``` json { "checkbox": true, "checkAll": true } ``` I expect the checkbox in the sort column to check/uncheck...
Astrolabe uses Selenium's raw `findElement`, which return `WebElement` objects. Protractor 24.1 introduces a new `ElementFinder` object, which behaves differently. Astrolabe should support both, but prefer the new `ElementFinder` type by...