Joel DeWitt
Joel DeWitt
Is there a flag or environment variable that will enable geckodriver to write trace logs when invoked by SeleniumWebDriver.startDriverFor("firefox") ?
Added two commands to move the browser window on the desktop, with Home as the upper-left corner of the desktop, usage: ``` | script | browser test | | |...
The nu HTML validator has a respectable embedded HTML validation library. This can be made into an inline Browser Test command: |validate page source | or |validate page source |...
Tests of web-application functions that download files requires interaction with desktop, as Selenium cannot touch a file-save pop-up dialog. Interaction with a file-save pop-up dialog can be done with a...
Testing web apps that download files requires interaction with desktop to deal with file-save pop-ups. This can be done though awt, with Robot, etc., but only if the pop-up button...
Tests of web-applications that create data grids & histograms sometimes require asynchronous JavaScript calls to the presentation vendor's API, for instance, with Tableau. waitForJavascriptCallback() is protected and cannot be called...
As part of a Continuous-Integration build pipeline, I would like to automate running instances of HsacFitNesseRunner in parallel processes. Is it possible to add the XML report formatter from standalone...
I would like to use the BrowserTest fixture to simulate multiple simultaneous users in a single automated testing job, i.e., on Hudson or Jenkins. Is it possible to start multiple...
Is there any easy way to hide passwords from POST transactions? For instance: report filters out password, shows: PASSWORD: ******* or leave the password resolution to a directive to use...
FitNesseMain loads logging.properties from the stand-alone .jar file. Calls to SLF4J log to Console or File as directed in this file. However, The same logging methods in a Fixture loaded...