Simulating Chrome Hard reload
im trying to simulate the chrome hard reload which is CTRL+SHIFT+R here my page: page = Sys.Browser().Page("localhostpage"); here's how im trying to simulate refresh page.Keys("[Hold]^!r"); This is not working, any other way how to simulate it?Solved1.6KViews0likes3CommentsXpath Get last matching result
I have an xpath expression like this: //td[@div='id']/nobr[text()='Total AR:'] Upon checking on the inspector element there are multiple matches, both on /td[@div='id'] and nobr[text()='Total AR:']. I only need to get the last result as im sure thats what i need. Basically im trying to do something like this: //td[@div='id'][last()]/nobr[text()='Total AR:'] how can i get the last result ?Solved1.5KViews0likes1CommentIs a testComplete chronium integration planned for next versions ?
Hi everyone, We develop automated tests in TestComplete for a Web application. We are using TestComplete 14.30. Our scripts take the browser name as input parameter (we pass this parameter to the Sys.Browser() object), then we configure 4 test items, one per browser in Firefox, Chrome, Edge, Internet Explorer, and we run our test on 4 web browsers with exactly the same script ! Now we have a problem since Microsoft released his new Edge based on Chromium. of course, we read these documentations About Support for Chromium Embedded Framework , Preparing CEF-Based Applications for Testing , AccessToChromiumContent Property (the example given in that 3rd link does not work for us), but it suggests to use TestedApps instead of Sys.Browser() object, which is completely a different approach, and so we have to develop some specific code specificaly for Edge. Since a Smartbear TestComplete integration pluggin is available on Chrome, and allows us to interact with a Web application in the Chrome browser with Sys.Browser() object, such a plugin is planned to be developped ? Or another integration way ? We need to know if we have to develop that specific code, or if we have just to wait and disable our test items running on Edge just a moment, waiting for that integration. Thanks for reading, regards, FelixSolved2.3KViews3likes10Comments