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
<!DOCTYPE HTML> | |
<html lang="de"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" /> | |
<title>test</title> | |
<style type="text/css"> | |
h1 { | |
text-align:center; | |
} |
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
### Manuals, Specs and Documentation | |
# DevDocs | |
http://devdocs.io/ | |
# Best Practices | |
http://bp.sapient-lab.com/ | |
## Focus on forms (in ascending specificity) |
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
/** | |
* Login form | |
*/ | |
/* Inspired by : http://dribbble.com/shots/307980-Ticket | |
* Found here: http://medleyweb.com/resources/css-form-examples-tools-and-solutions/ | |
* On CodePen: http://codepen.io/nexxos/pen/FoDbx | |
*/ | |
* { | |
box-sizing:border-box; |
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
# Create new file: | |
touch newfile.txt | |
type nul >> newfile.txt | |
# Open file (from current directory) in default application: | |
open newfile.txt |
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
var url = 'https://github.com/'; | |
module.exports = { | |
'should perform search in GitHub': function (test) { | |
test | |
.open(url) | |
// .type('#js-command-bar-field', 'dalek') | |
.type('body > div.wrapper > div.header.header-logged-out > div > div.site-search.js-site-search > form > input[type="text"]', 'dalek') | |
// .submit('#top_search_form') | |
.submit('.js-site-search-form') | |
.assert.text('.repolist h3 a', 'dalekjs/dalek', 'There is a link with label dalekjs') |
OlderNewer