META-INF.apidocs.nl.praegus.fitnesse.slim.fixtures.ExcelFileFixture.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolchain-fixtures Show documentation
Show all versions of toolchain-fixtures Show documentation
Extensions on existing fixtures to aid in automated testing
{
"constructors" : [ {
"readableName" : "excel file fixture",
"usage" : "| excel file fixture |",
"name" : "ExcelFileFixture",
"docString" : "",
"annotations" : [ ],
"parameters" : [ ],
"exceptions" : [ ]
} ],
"qualifiedName" : "nl.praegus.fitnesse.slim.fixtures.ExcelFileFixture",
"publicMethods" : [ {
"readableName" : "open excel sheet",
"usage" : "| open excel sheet | [excelFile] | ",
"contexthelp" : "open excel sheet <excelFile>",
"name" : "openExcelSheet",
"docString" : "Select the xls file to read. Default directory is files/xls/ if it is not specified as a link/full path\n@param excelFile The name of path of the file",
"annotations" : [ ],
"parameters" : [ {
"name" : "excelFile",
"description" : "The name of path of the file",
"type" : "String"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "value in row column",
"usage" : "| value in row | [row] | column | [col] | ",
"contexthelp" : "value in row <row> column <col>",
"name" : "valueInRowColumn",
"docString" : "get the String value of a cell\n@param row The row number (0-based)\n@param col The column number (0-based)\n@return The value of the cell, as a String",
"annotations" : [ ],
"parameters" : [ {
"name" : "row",
"description" : "The row number (0-based)",
"type" : "int"
}, {
"name" : "col",
"description" : "The column number (0-based)",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "String"
}, {
"readableName" : "value in row column in sheet",
"usage" : "| value in row | [row] | column | [column] | in sheet | [sheetName] |",
"contexthelp" : "value in row <row> column <column> in sheet <sheetName>",
"name" : "valueInRowColumnInSheet",
"docString" : "Get the String value of a cell in a given worksheet\n Usage: | value in row | [row] | column | [column] | in sheet | [sheetName] |\n@param row The row number (0-based)\n@param col The column number (0-based)\n@param sheetName The name of the worksheet\n@return The value of the cell, as a String",
"annotations" : [ ],
"parameters" : [ {
"name" : "row",
"description" : "The row number (0-based)",
"type" : "int"
}, {
"name" : "col",
"description" : "The column number (0-based)",
"type" : "int"
}, {
"name" : "sheetName",
"description" : "The name of the worksheet",
"type" : "String"
} ],
"exceptions" : [ ],
"returnType" : "String"
}, {
"readableName" : "write to row column",
"usage" : "| write | [value] | to row | [row] | column | [column] |",
"contexthelp" : "write <value> to row <row> column <column>",
"name" : "writeToRowColumn",
"docString" : "Write a value to a cell\n Usage: | write | [value] | to row | [row] | column | [column] |\n@param value The value to write\n@param row The row number (0-based)\n@param col The column number (0-based)",
"annotations" : [ ],
"parameters" : [ {
"name" : "value",
"description" : "The value to write",
"type" : "String"
}, {
"name" : "row",
"description" : "The row number (0-based)",
"type" : "int"
}, {
"name" : "col",
"description" : "The column number (0-based)",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "write to row column in sheet",
"usage" : "| write | [value] | to row | [row] | column | [column] | in sheet | [sheetName] |",
"contexthelp" : "write <value> to row <row> column <column> in sheet <sheetName>",
"name" : "writeToRowColumnInSheet",
"docString" : "Write a value to a cell in a given worksheet\n Usage: | write | [value] | to row | [row] | column | [column] | in sheet | [sheetName] |\n@param value The value to write\n@param row The row number (0-based)\n@param col The column number (0-based)\n@param sheetName The sheet to use",
"annotations" : [ ],
"parameters" : [ {
"name" : "value",
"description" : "The value to write",
"type" : "String"
}, {
"name" : "row",
"description" : "The row number (0-based)",
"type" : "int"
}, {
"name" : "col",
"description" : "The column number (0-based)",
"type" : "int"
}, {
"name" : "sheetName",
"description" : "The sheet to use",
"type" : "String"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "set global value to",
"usage" : "| set global value | [symbolName] | to | [value] | ",
"contexthelp" : "set global value <symbolName> to <value>",
"name" : "setGlobalValueTo",
"docString" : "Stores a (global) value so it can be accessed by other fixtures/pages.\n@param symbolName name to store value under.\n@param value value to store.",
"annotations" : [ ],
"parameters" : [ {
"name" : "symbolName",
"description" : "name to store value under.",
"type" : "String"
}, {
"name" : "value",
"description" : "value to store.",
"type" : "String"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "global value",
"usage" : "| global value | [symbolName] | ",
"contexthelp" : "global value <symbolName>",
"name" : "globalValue",
"docString" : "Retrieves a (global) value, which was previously stored using #setGlobalValueTo().\n@param symbolName name value was stored under.",
"annotations" : [ ],
"parameters" : [ {
"name" : "symbolName",
"description" : "name value was stored under.",
"type" : "String"
} ],
"exceptions" : [ ],
"returnType" : "String"
}, {
"readableName" : "wait seconds",
"usage" : "| wait seconds | [i] | ",
"contexthelp" : "wait seconds <i>",
"name" : "waitSeconds",
"docString" : "",
"annotations" : [ ],
"parameters" : [ {
"name" : "i",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "boolean"
}, {
"readableName" : "wait milliseconds",
"usage" : "| wait milliseconds | [i] | ",
"contexthelp" : "wait milliseconds <i>",
"name" : "waitMilliseconds",
"docString" : "",
"annotations" : [ ],
"parameters" : [ {
"name" : "i",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "boolean"
}, {
"readableName" : "set repeat interval to milliseconds",
"usage" : "| set repeat interval to milliseconds | [milliseconds] | ",
"contexthelp" : "set repeat interval to milliseconds <milliseconds>",
"name" : "setRepeatIntervalToMilliseconds",
"docString" : "",
"annotations" : [ ],
"parameters" : [ {
"name" : "milliseconds",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "repeat interval",
"usage" : "| repeat interval |",
"contexthelp" : "repeat interval",
"name" : "repeatInterval",
"docString" : "",
"annotations" : [ ],
"parameters" : [ ],
"exceptions" : [ ],
"returnType" : "long"
}, {
"readableName" : "repeat at most times",
"usage" : "| repeat at most times | [maxCount] | ",
"contexthelp" : "repeat at most times <maxCount>",
"name" : "repeatAtMostTimes",
"docString" : "",
"annotations" : [ ],
"parameters" : [ {
"name" : "maxCount",
"type" : "int"
} ],
"exceptions" : [ ],
"returnType" : "void"
}, {
"readableName" : "repeat at most times",
"usage" : "| repeat at most times |",
"contexthelp" : "repeat at most times",
"name" : "repeatAtMostTimes",
"docString" : "",
"annotations" : [ ],
"parameters" : [ ],
"exceptions" : [ ],
"returnType" : "int"
}, {
"readableName" : "repeat count",
"usage" : "| repeat count |",
"contexthelp" : "repeat count",
"name" : "repeatCount",
"docString" : "",
"annotations" : [ ],
"parameters" : [ ],
"exceptions" : [ ],
"returnType" : "int"
}, {
"readableName" : "time spent repeating",
"usage" : "| time spent repeating |",
"contexthelp" : "time spent repeating",
"name" : "timeSpentRepeating",
"docString" : "",
"annotations" : [ ],
"parameters" : [ ],
"exceptions" : [ ],
"returnType" : "long"
} ],
"typeName" : "nl.praegus.fitnesse.slim.fixtures.ExcelFileFixture",
"name" : "ExcelFileFixture",
"annotations" : [ ]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy