This file contains 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
*** Settings *** | |
Library Browser | |
*** Variables *** | |
${URL} https://seubarriga.wcaquino.me/login | |
${EMAIL} [email protected] | |
${PASSWORD} teste | |
*** Test Cases *** | |
Login Test |
This file contains 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
*** Settings *** | |
Library SeleniumLibrary | |
*** Variables *** | |
${URL} https://seubarriga.wcaquino.me/login | |
${EMAIL} [email protected] | |
${PASSWORD} teste | |
*** Test Cases *** | |
Login Test |
This file contains 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
import locale | |
import sys | |
class clt: | |
def __init__(self, salario_b, salario_l, fator_plr, vr, va): | |
self.salario_liquido = salario_l | |
self.vr = vr | |
self.va = va | |
self.terco_ferias = self.salario_liquido / 3 |
This file contains 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
// Uma conversação tem múltiplos fluxos. | |
// Cada fluxo tem uma sequência linear de passos que pode levar a um ponto de decisão. | |
// Cada ponto de decisão gera novos fluxos. | |
// Cada passo tem uma mensagem de saída e pode ter múltiplas mensagens de de entrada previstas. | |
// Mensagens de entrada geralmente determinam se haverá o início de um novo fluxo ou de novos passos. | |
{ | |
"flow":"quux", | |
"steps":[ | |
{ | |
"outbound":"foobar", |
This file contains 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
$env = $Env:AMBIENTE | |
$scriptpath = $MyInvocation.MyCommand.Path | |
$curdir = Split-Path $scriptpath | |
Set-Location $curdir | |
if($env -eq 'HML') | |
{ | |
Write-Output "Environment: $env" | |
$releaseBranch = git branch -r | Select-String "release" | |
$localReleaseBranch = $releaseBranch -replace "origin/", "" |
This file contains 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
from pyautogui import press, typewrite, hotkey | |
press('a') | |
typewrite('uma frase qualquer') | |
hotkey('ctrl', 'alt', 'del') |
This file contains 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
import pyperclip as pc | |
def colar_no_campo(texto) | |
pc.copy(texto) | |
pc.paste() |
This file contains 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
*** keywords *** | |
Abrir navegador | |
[Documentation] Abre o navegador maximizado. | |
... e carrega uma extensão que desabilita os alertas Js. | |
${options}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver | |
Call Method ${options} add_extension ${ROOT}\\Misc\\disable_alert.crx | |
Create WebDriver Chrome chrome_options=${options} |