Skip to content

Instantly share code, notes, and snippets.

View BorisOsipov's full-sized avatar
:shipit:

Boris Osipov BorisOsipov

:shipit:
View GitHub Profile
@BorisOsipov
BorisOsipov / Capture.kt
Created February 18, 2020 10:38 — forked from atsiarenia/Capture.kt
Additional helpers methods for kakao/kaspresso
import android.view.View
import android.webkit.WebView
import android.widget.CheckedTextView
import android.widget.TextView
import androidx.test.espresso.ViewInteraction
import androidx.test.espresso.assertion.ViewAssertions
import com.agoda.kakao.common.views.KBaseView
import com.agoda.kakao.common.views.KView
import com.agoda.kakao.screen.Screen
import com.agoda.kakao.text.KTextView
@BorisOsipov
BorisOsipov / Win10-64bit-npm.md
Last active January 30, 2020 08:27 — forked from jtrefry/Win10-64bit-npm.md
Configuring Windows 10 (64-bit) for npm and node-gyp
  • Install Git for Windows
  • Install all the required tools and configurations using Microsoft's windows-build-tools using npm install --global --production windows-build-tools from an elevated PowerShell or CMD.exe (run as Administrator).
@BorisOsipov
BorisOsipov / ultimate-ut-cheat-sheet.md
Created December 30, 2017 20:23 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@BorisOsipov
BorisOsipov / git-cheat-list.md
Created February 18, 2017 11:22
Git cheat list

Git cheat list

  • name of the current banch and nothing else (for automation)

    git rev-parse --abbrev-ref HEAD
    
  • all commits that your branch have that are not yet in master

    git log master..<HERE_COMES_YOUR_BRANCH_NAME>
    
@BorisOsipov
BorisOsipov / Selenide cheat sheet
Created February 14, 2016 09:10 — forked from makolesnik/Selenide cheat sheet
Selenide cheat sheet to create concise UI tests in Java. What is Selenide? Selenide is a wrapper for Selenium WebDriver. http://selenide.org/
=Navigating=
baseUrl = "http://site.com";
open("/login");
open("http://google.com");
switchTo().frame($("#myFrame").toWebElement());
=WebDriver=
getWebDriver().findElement(By.id("username")); // import static com.codeborne.selenide.WebDriverRunner.getWebDriver;