Skip to content

Instantly share code, notes, and snippets.

View IsmagilovQA's full-sized avatar

Vitaliy IsmagilovQA

  • Brightgrove LTD
  • Kharkiv, Ukraine
View GitHub Profile
@IsmagilovQA
IsmagilovQA / gist:3776b4da1c6dcc638065b69537cd1d32
Last active January 5, 2022 14:57
Digital Ocean settings
- ssh root@ip
- vel - public key
- docker ps -> make sure no running images
- git clone url of app from GitHub
- cd microservices-demo
- cd deploy
- cd docker-compose (where we have docker-compose.yml)
- docker-compose up -d
@IsmagilovQA
IsmagilovQA / gist:ee59a5bd61f7cadfe3efe1a03dda6d73
Created January 5, 2022 14:44
Installing Jenkins in docker on digitalOcean (Pirogov example)
- Select servlet with docker -> get ip of virtual machine
- ssh root@[ip of virtual machine]
- docker run -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock -v jenkins-data:/var/jenkins_home jenkinsci/blueocean
@IsmagilovQA
IsmagilovQA / gist:311ad0d31c6832e9d247acba44926833
Last active January 5, 2022 14:55
Selenide | Custom condition: ElementWithinViewportCondition
https://gist.github.com/BorisOsipov/16a1ac309f0f9acd9ee34ac50fc0b45f
@ParametersAreNonnullByDefault
public class ElementWithinViewportCondition extends Condition {
public ElementWithinViewportCondition() {
super("visible");
}
@IsmagilovQA
IsmagilovQA / SystemSetupExtension
Last active January 5, 2022 14:54 — forked from Legionivo/SystemSetupExtension
Custom Extension which executes code only once before all tests are started and after all tests finished
/**
* Custom Extension which executes code only once before all tests are started and after all tests finished.
* This is temporary solution until https://github.com/junit-team/junit5/issues/456 will not be released
*/
public class SystemSetupExtension implements BeforeAllCallback, ExtensionContext.Store.CloseableResource {
private static boolean systemReady = false;
/**