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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
pull_request: |
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
{ "URLWhitelist": ["whatsapp://*"] } |
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
<html> | |
<head> | |
<title>SigmaJS example</title> | |
<!-- Sigma core --> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/sigma.core.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/conrad.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/utils/sigma.utils.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/utils/sigma.polyfills.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/sigma.settings.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/classes/sigma.classes.dispatcher.js"></script> |
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
const sendCommand = (target, method, params) => | |
new Promise((resolve, reject) => { | |
chrome.debugger.sendCommand(target, method, params, result => { | |
if (chrome.runtime.lastError) { | |
reject(chrome.runtime.lastError); | |
} else { | |
resolve(result); | |
console.log(method, result); | |
} | |
}); |
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
private fun setToken() { | |
Selenide.open("/") | |
val token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJBdXRoZW50aWNhdGlvbiIsInJvbGUiOiJhZG1pbiIsImlzcyI6Imh0dHA6Ly9kcmlsbC00LWovIiwiaWQiOjEsImV4cCI6MTU3Njg1MzQ4NX0.qwV_dOwrsLo6lDJ8Fd-oWwM6RsPdCYXiBSfq9ML91PuKn6nwAxnlRTc2z2NeNETRa-bBG6D3XFTvWMr10u9CMg" | |
Selenide.executeJavaScript<Any>("window.localStorage.setItem('auth_token', '$token')") | |
} | |
private fun deleteToken() { | |
Selenide.open("/") | |
Selenide.executeJavaScript<Any>("window.localStorage.removeItem('auth_token')") | |
Selenide.refresh() |
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
{ | |
"projectName": "admin-ui", | |
"source_dir": "./src", | |
"url": "http://localhost:8081/saveAst", | |
"ignoreFiles": [ | |
"*.js.map", | |
"*.js", | |
"*.scss", | |
"*.ttf", | |
"*.svg" |
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
Listening for transport dt_socket at address: 5006 | |
[main] INFO Application - No ktor.deployment.watch patterns specified, automatic reload is not active | |
[main] INFO com.epam.drill.service.DataSourceRegistry - External db is not configured. Backing to embedded H2 database /work/data/settings. | |
[main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... | |
[main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. | |
SQL: CREATE TABLE IF NOT EXISTS PLUGINBEANS (ID VARCHAR(50) PRIMARY KEY, PLUGIN_ID VARCHAR(50) NOT NULL, "NAME" VARCHAR(50) NOT NULL, DESCRIPTION VARCHAR(50) NOT NULL, "TYPE" VARCHAR(15) NOT NULL, FAMILY INT NOT NULL, ENABLED BOOLEAN NOT NULL, CONFIG VARCHAR(2000) NOT NULL) | |
SQL: ALTER TABLE PLUGINBEANS ADD CONSTRAINT PLUGINBEANS_ID_UNIQUE UNIQUE (ID) | |
SQL: CREATE TABLE IF NOT EXISTS AGENTINFOS (ID VARCHAR(50) PRIMARY KEY, "NAME" VARCHAR(50) NOT NULL, GROUP_NAME VARCHAR(50) NULL, DESCRIPTION VARCHAR(50) NOT NULL, STATUS INT NOT NULL, ADMIN_URL VARCHAR(50) NOT NULL, BUIL |
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
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# agnoster's Theme - https://gist.github.com/3712874 | |
# A Powerline-inspired theme for ZSH | |
# | |
# # README | |
# | |
# In order for this theme to render correctly, you will need a | |
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
# Make sure you have a recent version: the code points that Powerline |
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
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath "io.qameta.allure:allure-gradle:2.3" | |
} | |
} | |
apply plugin: 'java' |
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
====== Kirk error message ===== | |
org.openqa.selenium.TimeoutException: | |
failed while waiting 4 seconds | |
to assert text | |
for element located {By.cssSelector: div.desktop a.skip-account span} | |
reason: condition did not match | |
expected: A[ccount] | |
actual: A[CCOUNT] | |
screenshot: file://D:\WebShopIntegration\Autotests\arvi-webshop\web-ui\build\reports\screen_1501145672338.png |
NewerOlder