Skip to content

Instantly share code, notes, and snippets.

View wlsf82's full-sized avatar
👨‍💻

Walmyr wlsf82

👨‍💻
View GitHub Profile
// Inside page object file
this.languageLinks = element.all(by.css('.language a'));
// Inside spec file
it('languages', function() {
var languagesArray = [
'Españolskldfjsldfjsl',
'English'
];
roomActivity.listItems.filter((elem) => {
return elem.getText().then((text) => {
return text === randomRoomName.toLowerCase();
});
}).click();
roomActivity.listItems.count().then((numberOfItemsAfterRemoval) => {
expect(numberOfItemsAfterRemoval).toEqual(numberOfItemsBeforeRemoval - 1);
});
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh