This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DAYTONA USA 2: BATTLE ON THE EDGE and POWER EDITION (Model 3 Step 2) | |
Method 1 | |
Go into the test mode and push the service and test button on the PCB at the same time. | |
Method 2 | |
Go into the test mode and push Hold Start and Press GREEN (VR4), GREEN (VR4), BLUE (VR2), YELLOW (VR3), RED (VR1), YELLOW (VR3), BLUE (VR2). | |
(Colours are the VR buttons). | |
DIRT DEVILS | |
On the test menu, press Start, Start, Service, Start, Start, Start, Service and Test. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void doFileDownload() throws Throwable { | |
// Since Java 7: Relative path from project root dir | |
// Put in target dir to avoid committing downloaded files | |
var downloadDir = Paths.get("target").toAbsolutePath().toString(); | |
var prefs = new HashMap<String, Object>(); | |
prefs.put("download.default_directory", downloadDir); // Bypass default download directory in Chrome | |
prefs.put("safebrowsing.enabled", "false"); // Bypass warning message, keep file anyway (for .exe, .jar, etc.) | |
var opts = new ChromeOptions(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- https://mvnrepository.com/artifact/org.reflections/reflections --> | |
<dependency> | |
<groupId>org.reflections</groupId> | |
<artifactId>reflections</artifactId> | |
<version>0.10.2</version> | |
<scope>test</scope> | |
</dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<Configuration status="WARN"> | |
<Properties> | |
<Property name="logPath">target/test-logs</Property> | |
<Property name="rollingFileName">test-log</Property> | |
</Properties> | |
<Appenders> | |
<Console name="console" target="SYSTEM_OUT"> | |
<PatternLayout pattern="[%highlight{%-5level}] %d{DEFAULT} %c{1}.%M() - %msg%n%throwable{short.lineNumber}" /> | |
</Console> |