Skip to content

Instantly share code, notes, and snippets.

View uLucasFraga's full-sized avatar
:octocat:
I may be slow to respond.

lucas.fraga uLucasFraga

:octocat:
I may be slow to respond.
View GitHub Profile
@uLucasFraga
uLucasFraga / calculator_po.js
Last active July 4, 2018 12:55
ARQUIVO PAGE-OBJECTS
'use strict'
// protractor/features/pages/calculator_po.js
class CalculadoraPage {
constructor() {
this.firstField = element(by.model('first')),
this.secondField = element(by.model('second')),
this.goButton = element(by.id('gobutton')),
this.colResult = element(by.cssContainingText('.table', 'Result')),
this.result = element(by.binding('latest')),