ContributionsMost RecentMost LikesSolutionsRe: User form in Project Suite. Hi rraghvani , I don't want a file to be read. The whole idea behind this is that the user is refrained from using the tool. So, he should enter input then and there itself without interfering with the tool. Many users will be using my tests. So, each input of the user differs and I don't want everyone to open and edit that file. User form in Project Suite. I want an input to be entered in a text box from the user before running a project suite. So, I came across User Forms. But I can only see that User forms are created for a project but not Project Suite. If that's the case, I can't ask the user to input the same thing for 6 times as my Project Suite contains 6 projects. Also no matter how the user runs the test, he can run a single project or an entire project suite. The User Form should pop up only once before the run. Is it possible with Testcomplete? SolvedRe: Rerun tests after a stipulated time period. rraghvani Thanks for the info you have provided. No other project is dependent on this ID generation. I check the ID is generated or not by opening a url in chrome which contains a dynamic table. I then search for the specific record and will check the ID cell. If the cell is empty, then the generation is still in progress. If it contains any value, then the ID has been generated successfully. Even after 15 minutes, the cell in the table is empty, I then log the error messages. This is how my test works. MW_Didata I have thought about your solution. So after checking at the end, what if the generation is still in progress and needed an extra run after sometime? I need to manually run it again right? My entire project suite is running in a time not more than 8 minutes. So, some IDs will eventually fail to generate within 8 minutes. Also, can you please explain about this running separately in a batch. How to split tests up? So that it could be easier for me to manually run another batch after sometime to check for ID generation. Re: Rerun tests after a stipulated time period. Hi MW_Didata , I appreciate your answer. This will work if I run the other tests in the same project. But meanwhile, I need to run another project and come back to this project after some time to check whether the ID has been generated or not. I have also read that Project suite execution plan does not support reruns of a project i.e, a project can be run only once in a project suite. So, in this case is there any solution? I also wanted to know is there any scheduler to set time and trigger that particular test after some time? Rerun tests after a stipulated time period. Hi guys, I am running a test to generate an ID. So, the generation takes 5-10 minutes. In few cases, it takes more than 10 minutes. I have also implemented another script in python to check whether the ID has been generated or not. So, this later script has to be run for every 5 minutes for 3 times (i.e, till 15 mins). If, the test is a success, there is no need to rerun it. Meanwhile, during this timeframe, I will be running other project test scripts in that project suite. Is it possible in Testcomplete? If so, how? Please help! PS : I am a beginner. SolvedRe: How to find background color of a cell in a table?Yeah, Cell_21 exists. It's actually a cell in a table. This worked fine for quite sometime. Suddenly the error began showing up.Re: How to find background color of a cell in a table?At line style_21 = page.contentDocument.defaultView.getComputedStyle(Aliases.browser.WebPage.Cell_21 , "") Python Run time error, Type mismatch at this line.Re: How to find background color of a cell in a table? Thanks rraghvani , I figured out the solution. My script goes like: page = Sys.Browser().Page("https://something.com/something..") style_21 = page.contentDocument.defaultView.getComputedStyle(Aliases.browser.WebPage.Cell_21 , "") Log.Message(style_21.backgroundColor) This worked for me and I got the result as: rgb(255,255,255) But suddenly while running tests, I am getting Type Mismatch error. The tests ran well previously. All of a sudden, I started getting this error. Please help! How to find background color of a cell in a table? Hi guys, I am unable to find the background color of a cell in the table. The table is on a chrome browser. It goes like Browser.Page.cell. I am using python scripting. I need to check whether the cell is highlighted or not. Any help is appreciated!