Skip to content

Instantly share code, notes, and snippets.

View mz0's full-sized avatar
☂️
לֹא הַבַּיְשָׁן לָמֵד‎

Mark Zhitomirski mz0

☂️
לֹא הַבַּיְשָׁן לָמֵד‎
View GitHub Profile
@mz0
mz0 / Env.java
Last active December 3, 2015 08:13
List JVM's System properties
public class Env {
public static void main(String[] args) {
System.getProperties().list(System.out);
}
}
@mz0
mz0 / Login2.feature
Last active November 23, 2015 08:12
"Automated testing with Selenium and Cucumber" - Listing 2
Feature: Test Login
Scenario Outline: Login Success and Failure
Given I navigate to the mock application
When I try to login with '<type>' credentials
Then I should see that I logged in '<status>'
Examples:
| type | status |
| valid | successfully |
| invalid | unsuccessfully |