Skip to content

Instantly share code, notes, and snippets.

RROR: /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/external/bazel_tools/tools/jdk/BUILD:350:14: Action external/bazel_tools/tools/jdk/platformclasspath.jar failed (Exit 1): sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/sandbox/darwin-sandbox/204/execroot/selenium && \
exec env - \
TMPDIR=/var/folders/bn/hj5ss6ld7sz1cqq0h551d7n80000gn/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/sandbox/darwin-sandbox/204/sandbox.sb /var/tmp/_bazel_fyre/install/3ac6e4bc67346f686d73708a27e81d33/process-wrapper '--timeout=0' '--kill_delay=15' external/remotejdk11_macos/bin/java -XX:+IgnoreUnrecognizedVMOptions '--add-exports=jdk.compiler/com.sun.tools.javac.platform=ALL-UNNAMED' -cp bazel-out/darwin-fastbuild/bin/external/bazel_tools/tools/jdk/platformclasspath_classes:external/remotejdk11_macos/lib/tools.jar DumpPlatformClassPath bazel-out/darwin-fastbuild/bin/external/bazel_tools/tools/jdk
┌─[fyre@ip-192-168-7-42] - [~/Programming/OpenSource/Selenium] - [2020-07-02 07:55:49]
└─[1] <git:(master 941dc9c6b2✈) > bazelisk build java/... --sandbox_debug
INFO: Analyzed 782 targets (0 packages loaded, 0 targets configured).
INFO: Found 782 targets...
ERROR: /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/external/bazel_tools/tools/jdk/BUILD:346:14: Action external/bazel_tools/tools/jdk/platformclasspath.jar failed (Exit 1): sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/sandbox/darwin-sandbox/3/execroot/selenium && \
exec env - \
TMPDIR=/var/folders/bn/hj5ss6ld7sz1cqq0h551d7n80000gn/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_fyre/f635b201bc2eab2eb0bcee016c158a4f/sandbox/darwin-sandbox/3/sandbox.sb /var/tmp/_bazel_fyre/install/44090000910a11db7c3520e6fcb2c4fe/process-wrapper '--timeout=0' '--kill_delay=15' external/remotejdk11_macos/bin/java -XX:+IgnoreUnrecognizedVMOptions '--add-exports=jdk.compiler/com
@Ardesco
Ardesco / RepositoryMap.xml
Created November 9, 2017 17:14
Use 32bit IEDriverServer for 64bit as well
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<root>
<windows>
<driver id="internetexplorer">
<version id="3.7.0">
<bitrate thirtytwobit="true" sixtyfourbit="true">
<filelocation>http://selenium-release.storage.googleapis.com/3.7/IEDriverServer_Win32_3.7.0.zip</filelocation>
<hash>ded0a82cab46538751ba17206f55c112674585d6</hash>
<hashtype>sha1</hashtype>
</bitrate>
@Ardesco
Ardesco / Keybase.md
Created October 5, 2017 22:07
Keybase.md

Keybase proof

I hereby claim:

  • I am ardesco on github.
  • I am ardesco (https://keybase.io/ardesco) on keybase.
  • I have a public key ASCDrBg9jHlR-1yl3tZZXLvzI6rDOD8w-ctc49BO63hJnwo

To claim this, I am signing this object:

body {
font-family: sans-serif;
background: #000000;
color: #fefefe;
font-size: 14px;
}
div.pipeline-loading-icon {
content: url("dark-load.gif");
}
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
function usage(){
echo -e "\nThis script will record what is happening on an Android device"
echo -e " "
echo -e "Usage: './`basename $0` foo' or './`basename $0` foo.mp4'"
echo -e "Both of the above will produce a recording with the filename 'foo.mp4'"
@Ardesco
Ardesco / driverName.html
Created September 5, 2014 19:22
Refactored random name generator
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="application/javascript">
function pickARandomDriverName(element) {
"use strict";
var firstNames = ["Giuseppe", "Juan Manuel", "Alberto", "Mike", "Jack", "Bob"];
@Ardesco
Ardesco / gist:5005206
Created February 21, 2013 14:53
NPE Stack trace
Error Message
java.lang.NullPointerException
Stacktrace
java.lang.NullPointerException
at org.openqa.selenium.remote.RemoteWebElement.getLocation(RemoteWebElement.java:334)
at org.openqa.selenium.remote.RemoteWebElement$1.onPage(RemoteWebElement.java:398)
at org.openqa.selenium.interactions.internal.Coordinates$onPage.call(Unknown Source)
at com.telefonica.smartsteps.webui.pagemodel.charts.LineChart.hoverOverGraphPointAtXAxisPosition(LineChart.groovy:50)
@Ardesco
Ardesco / dataProviderExample.java
Created January 28, 2013 23:25
DataProvider example converted to WebDriver API for paul rankin
package com.lazerycode.ebselen.website.google;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
@Ardesco
Ardesco / dataProviderExample.java
Created January 28, 2013 22:15
Fixed DataProvider example for paul rankin
package com.lazerycode.ebselen.website.google;
import com.thoughtworks.selenium.SeleneseTestCase;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import org.openqa.selenium.server.SeleniumServer;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;