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
| ## | |
| ## This utility makes it easy to convert a properties file specified in the _file_to_update_ variable to Markdown table format | |
| ## Takes a properties file in the form: | |
| ## `key=value` | |
| ## | |
| ## It outputs each value in the form: | |
| ## `| key | value |` | |
| ## | |
| ## Optional properties, denoted by being commented out, are output as `<not set>` |
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
| ## | |
| ## This utility makes it easy to convert a properties file specified in the _file_to_update_ variable to use confd properties. | |
| ## Takes a properties file in the form: | |
| ## `key=value` | |
| ## | |
| ## It reads the file in and creates a new file with _.new_ extension | |
| ## Every property key is converted to a confd path, the property value becomes the default value for the confd parameter | |
| ## Optional properties, denoted by being commented out, e.g. `# key=value`, are converted to optional confd properties. | |
| ## | |
| ## Example: |
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
| import static java.lang.String.format; | |
| import java.net.URL; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.firefox.FirefoxDriver; | |
| import org.openqa.selenium.firefox.FirefoxProfile; | |
| import org.openqa.selenium.remote.DesiredCapabilities; | |
| import org.openqa.selenium.remote.RemoteWebDriver; |