I\'m trying to get a handle on the button below based on the attribute gl-command. I\'m aware I can find the button using a Cssselector by locator
gl-command
Cssselector
XPath would be your safest bet.
IWebElement glButton = driver.findElement(By.xpath("//button[contains(@gl-command, 'transaction')]));
There's a similar question here: http://forum.testproject.io/index.php?topic=66.0