Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm sending http post request to a website, why BAS is opening a browser for my threads? isn't HTTP requests suppose to be just a request without actually a browser ?!
Are you sure you're not using any browser actions in the script? It would be great if you attached a test script to your answer.
The latest version of BAS , You need to download it, then update your template https://bablosoft.com/distr/BrowserAutomationStudio/27.5.1/BrowserAutomationStudioInstallAllInOne.exe
@Hifive said in Xpath does not work with Mobile browser:
xpath> //a[contains(@ref, 'contact')]
Maybe "href" instead of "ref" >>>
xpath> //a[contains(@href, 'contact')]
@GaG thanks