ContributionsMost RecentMost LikesSolutionsRe: import pandas package in python for excel read Hi Tanya, Suppport team came back stating that it is a known issue with numpy package and not related to Test Complete. We have to uninstall numpy and pandas package. Install numpy version 1.12.0 Then reinstall pandas. Re: import pandas package in python for excel read Will do that Tanya. Re: Datadriven Using Excel for Scripts Read the excel data and store in RecordSet as Shankar mentioned, Use those values to build the function name and its arguments as a String Variable. Finally pass the variable to eval method to run the script which is present in the script file Eg in Vbscript Builder = objRS.Fields("ScriptName").Value & "(""OR_" & objRS.Fields("Username").Value & """)" Eval(Builder) - This will identify the function in TestCase Script file and will run it. Re: opening url in new browser window Hi, I tried this piece of code in python, Where i am able to open a new browser window, when one instance of the browser is already present. You can convert this piece of code to your desired language and try it out. import os os.system("start chrome https://www.google.com/ --new-window") Re: How can I open new browser session by test complete As you mentioned - When I try Sys.Browser('iexplore').BrowserWindow(0).Keys("^t"), it is opening new tab, but still url is entering in the previous tab. - Focus will be on to the previous tab. When a new tab is created using Keys Method, You have to click on the Edit Bar of the browser for the new tab and then enter the URL. Later you can use Keys method to navigate between tabs. import pandas package in python for excel read Hi All, I am trying to read excel sheet and store in data frame in testcomplete python language. When i try to import pandas package, it says required dependency missing numpy. After importing numpy package i am getting the following error: Importing the multiarray numpy extension module failed. Most likely you are trying to import a failed build of numpy. No issues are seen when importing other packages like math and browser packages. SolvedUpload Test Complete logs to Sharepoint using Rest Api Hi, I am trying to upload Test Complete Logs to Sharepoint, I have tried to use the Front Page RPC to upload but i am getting a 403 forbidden error, Also i am using author.dll to post. Can I use rest api to upload the documents. Have any one tried using vbscript to Create a Rest Api function to upload the documents. If so any guidance will be much appreciated.