Skip to content
View TangibleDream's full-sized avatar

Block or report TangibleDream

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 Loading

  1. chessJS chessJS Public

    This is an exercise to get JS more into my head.

    JavaScript

  2. chess-spec.js chess-spec.js
    1
    'use strict'
    2
    const movePiece = (poo,dest) => {
    3
        element(by.xpath(`//*[@id='${poo}']`)).click();
    4
        element(by.xpath(`//*[@id='${dest}']`)).click();
    5
        $('#actionButton').click();