Skip to content

Commit

Permalink
Fix[TE-10856]: When we store runtime variables in Addons it is not di…
Browse files Browse the repository at this point in the history
…splayed in run-time Overlay --> This issue still exists for Community addons (Pre-existing addons) (#36)
  • Loading branch information
SunilGembali authored Oct 25, 2023
1 parent 5fcbc26 commit 8064235
Show file tree
Hide file tree
Showing 30 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion basic_math_operations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>basic_math_operations</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class MathematicalOperationsAndroid extends MathematicalOperationsWeb {
private com.testsigma.sdk.TestData operator;
@TestData(reference = "testdata2")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "runtimevariable")
@TestData(reference = "runtimevariable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@TestData(reference = "number")
private com.testsigma.sdk.TestData testData4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class MathematicalOperationsIos extends MathematicalOperationsWeb {
private com.testsigma.sdk.TestData operator;
@TestData(reference = "testdata2")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "runtimevariable")
@TestData(reference = "runtimevariable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@TestData(reference = "number")
private com.testsigma.sdk.TestData testData4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class MathematicalOperationsMw extends MathematicalOperationsWeb {
private com.testsigma.sdk.TestData operator;
@TestData(reference = "testdata2")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "runtimevariable")
@TestData(reference = "runtimevariable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@TestData(reference = "number")
private com.testsigma.sdk.TestData testData4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class MathematicalOperationsWeb extends WebAction {
private com.testsigma.sdk.TestData operator;
@TestData(reference = "testdata2")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "runtimevariable")
@TestData(reference = "runtimevariable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@TestData(reference = "number")
private com.testsigma.sdk.TestData testData4;
Expand Down
2 changes: 1 addition & 1 deletion browser_local_storage_actions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>browser_local_storage_actions</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GetItemFromLocalStorage extends WebAction {
@TestData(reference = "Key_Name")
private com.testsigma.sdk.TestData keyNameTestData;

@TestData(reference = "Variable_Name")
@TestData(reference = "Variable_Name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData variableNameTestData;

@RunTimeData
Expand Down
2 changes: 1 addition & 1 deletion html_table_actions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>html_table_actions</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class StoreTotalNumberOfCellsOfTable extends WebAction {
private static final String TABLE_ERROR_MESSAGE = "Expected Table Was Not Found";
@Element(reference = "element")
private com.testsigma.sdk.Element element;
@TestData(reference = "variable-name")
@TestData(reference = "variable-name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData variableName;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class StoreTotalNumberOfRowsOfTable extends WebAction {
private static final String TABLE_ERROR_MESSAGE = "Expected Table Was Not Found";
@Element(reference = "element")
private com.testsigma.sdk.Element element;
@TestData(reference = "variable-name")
@TestData(reference = "variable-name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData variableName;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
2 changes: 1 addition & 1 deletion pdf_actions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>pdf_actions</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class NoofCharaftertext extends WebAction {
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test_data")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "Variable_Name")
@TestData(reference = "Variable_Name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class NoofCharbeforetext extends WebAction {
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test_data")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "Variable_Name")
@TestData(reference = "Variable_Name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class NoofwordsAftertext extends WebAction {
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test_data")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "Variable_Name")
@TestData(reference = "Variable_Name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class NoofwordsBeforetext extends WebAction {
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test_data")
private com.testsigma.sdk.TestData testData2;
@TestData(reference = "Variable_Name")
@TestData(reference = "Variable_Name",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData3;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
applicationType = ApplicationType.WEB)
public class ReadpdfContent extends WebAction {

@TestData(reference = "variable")
@TestData(reference = "variable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData;

@RunTimeData
Expand Down
2 changes: 1 addition & 1 deletion remove_special_character/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>remove_special_character</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class RemoveSpecialcharacter extends WebAction
@TestData(reference = "testdata2")
private com.testsigma.sdk.TestData testData2;

@TestData(reference = "Variable")
@TestData(reference = "Variable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData runtimeVar;

@RunTimeData
Expand Down
2 changes: 1 addition & 1 deletion split_string_action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>split_string_action</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SplitStringAction extends WebAction {
@TestData(reference = "position")
private com.testsigma.sdk.TestData position;

@TestData(reference = "output-variable")
@TestData(reference = "output-variable",isRuntimeVariable = true)
private com.testsigma.sdk.TestData extractedString;

@com.testsigma.sdk.annotation.RunTimeData
Expand Down
2 changes: 1 addition & 1 deletion string_data_generators/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>string_data_generators</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class StoreTestDataParameterIntoRuntimeVariable extends com.testsigma.addons.string_utils.web.StoreTestDataParameterIntoRuntimeVariable {
@TestData(reference = "test-data-1")
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test-data-2")
@TestData(reference = "test-data-2",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData2;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class StoreTestDataParameterIntoRuntimeVariable extends com.testsigma.addons.string_utils.web.StoreTestDataParameterIntoRuntimeVariable {
@TestData(reference = "test-data-1")
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test-data-2")
@TestData(reference = "test-data-2",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData2;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class StoreTestDataParameterIntoRuntimeVariable extends com.testsigma.addons.string_utils.web.StoreTestDataParameterIntoRuntimeVariable {
@TestData(reference = "test-data-1")
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test-data-2")
@TestData(reference = "test-data-2",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData2;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class StoreTestDataParameterIntoRuntimeVariable extends WebAction {
private static final String ERROR_MESSAGE = "Expected textarea Not Found";
@TestData(reference = "test-data-1")
private com.testsigma.sdk.TestData testData1;
@TestData(reference = "test-data-2")
@TestData(reference = "test-data-2",isRuntimeVariable = true)
private com.testsigma.sdk.TestData testData2;
@RunTimeData
private com.testsigma.sdk.RunTimeData runTimeData;
Expand Down
2 changes: 1 addition & 1 deletion while_loop_iteration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.addons</groupId>
<artifactId>while_loop_iteration</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public class SplitUsingSeparator extends AndroidAction {
@TestData(reference = "RUN_TIME_TESTDATA")
private com.testsigma.sdk.TestData inputData;

@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME")
@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData runTimeVariableName;
@TestData(reference = "VARIABLE_NAME")
@TestData(reference = "VARIABLE_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData currentIterationRuntimeVarName;

@RunTimeData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class SplitUsingSeparator extends IOSAction {
@TestData(reference = "RUN_TIME_TESTDATA")
private com.testsigma.sdk.TestData inputData;

@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME")
@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData runTimeVariableName;
@TestData(reference = "VARIABLE_NAME")
@TestData(reference = "VARIABLE_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData currentIterationRuntimeVarName;

@RunTimeData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public class SplitUsingSeparator extends WebAction {
@TestData(reference = "SEPARATOR")
private com.testsigma.sdk.TestData separator;

@TestData(reference = "RUN_TIME_TESTDATA")
@TestData(reference = "RUN_TIME_TESTDATA",)
private com.testsigma.sdk.TestData inputData;

@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME")
@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData runTimeVariableName;
@TestData(reference = "VARIABLE_NAME")
@TestData(reference = "VARIABLE_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData currentIterationRuntimeVarName;

@RunTimeData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class SplitUsingSeparator extends WebAction {
@TestData(reference = "RUN_TIME_TESTDATA")
private com.testsigma.sdk.TestData inputData;

@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME")
@TestData(reference = "RUN_TIME_TESTDATA_VAR_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData runTimeVariableName;
@TestData(reference = "VARIABLE_NAME")
@TestData(reference = "VARIABLE_NAME",isRuntimeVariable = true)
private com.testsigma.sdk.TestData currentIterationRuntimeVarName;

@RunTimeData
Expand Down

0 comments on commit 8064235

Please sign in to comment.