I have a data driven propery... but when my value is too big like beyond 255 characters ( it seems), the test stalls with beeps and will not take the value.
Do you have a size limit on the propery value we can set?
I am setting the "FileUploadPath" for my silverlight file upload dialog. The reason my value is long is...to upload multiple files...
Is there a way to record uploading multiple files at once?...in Silverlight file upload will take as many as select.
I am trying to acheive this by ...cancatenating the filenames ("file1.txt" "file2.txt" "file3.txt"...) as the input value to "FileUploadPath". It works..but fails when the value is too long....I have 35 filenames to concatenate like below and it failed....
""DocInitViaUpload_DocSet_A.xlsx" "Large_StaticTestDocument_1.pdf" "Large_StaticTestDocument_2.pdf" "Med_StaticTestDocument_1.docx" "Med_StaticTestDocument_2.docx" "Med_StaticTestDocument_3.docx" "Small_StaticTestDocument_1.docx" "Small_StaticTestDocument_10.docx" "Small_StaticTestDocument_11.docx" "Small_StaticTestDocument_12.docx" "Small_StaticTestDocument_13.docx" "Small_StaticTestDocument_14.docx" "Small_StaticTestDocument_15.docx" "Small_StaticTestDocument_16.docx" "Small_StaticTestDocument_17.docx" "Small_StaticTestDocument_18.docx" "Small_StaticTestDocument_19.docx" "Small_StaticTestDocument_2.docx" "Small_StaticTestDocument_20.docx" "Small_StaticTestDocument_21.docx" "Small_StaticTestDocument_22.docx" "Small_StaticTestDocument_23.docx" "Small_StaticTestDocument_24.docx" "Small_StaticTestDocument_25.docx" "Small_StaticTestDocument_26.docx" "Small_StaticTestDocument_27.docx" "Small_StaticTestDocument_28.docx" "Small_StaticTestDocument_29.docx" "Small_StaticTestDocument_3.docx" "Small_StaticTestDocument_30.docx" "Small_StaticTestDocument_4.docx" "Small_StaticTestDocument_5.docx" "Small_StaticTestDocument_6.docx" "Small_StaticTestDocument_7.docx" "Small_StaticTestDocument_8.docx" "Small_StaticTestDocument_9.docx" "VeryLarge_StaticTestDocument_1.pdf" "
Please help me understand what is going on!