Skip to content
View vhorb's full-sized avatar
Block or Report

Block or report vhorb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. mini-sftp-client mini-sftp-client Public

    Forked from anikitenko/mini-sftp-client

    Mini web sFTP client written on Go using Revel Framework with API support

    Go

  2. vhorb.github.io vhorb.github.io Public

    https://vhorb.github.io

  3. protractor-rozetka-test protractor-rozetka-test Public

    Protractor example for testing site rozetka.com.ua

    JavaScript

  4. CircleCI config to re-run failed rsp... CircleCI config to re-run failed rspec tests
    1
          - run:
    2
              name: run feature tests
    3
              command: |
    4
                TEST_FILES="$(circleci tests glob "spec/features/*_spec.rb" | circleci tests split --split-by=timings)"
    5
                echo Tests run on Google Chrome version: `google-chrome --version`
  5. Capybara register new driver for test Capybara register new driver for test
    1
    # Typically this faile named capybara.rb and needed for browser configuration.
    2
    # This file related to capybara 3.22.0 and webdriver 3.8.0
    3
    
                  
    4
    require 'capybara/rspec'
    5
    require 'capybara-screenshot/rspec'
  6. Custom waits for selenium Custom waits for selenium
    1
    module WaitHelper
    2
      def wait_for_ajax
    3
        Timeout.timeout(60) do
    4
          sleep(0.7) until Capybara.page.evaluate_script('jQuery.active').zero?
    5
        end