Q
Q
Prices vary by store. For example, oreo-biscuits-original-10-x-2-koekjes-220g/155522PAK price at Oosterhout is 1,87 whereas Brielle it is 1,97. Is there away with the API to specify both the product and the...
In many other language implementations you can [set the orientation for screenshots](https://appium.readthedocs.io/en/stable/en/commands/session/orientation/set-orientation/). Is there a way to do this with Selenium basic vba?
Does selenium basic support either of the two above methods please?
In Python with selenium I can run the following to return a list of matched elements text ``` from selenium import webdriver d = webdriver.Chrome() d.get("https://www.imobiliare.ro/inchirieri-apartamente/sibiu/hipodrom-4/apartament-de-inchiriat-3-camere-X84T100B2?lista=2361394") items = d.execute_script("return [...document.querySelectorAll('div.titlu')].map(item...
Is there a way, in VBA, to load a page, using Chrome, without allowing Javascript scripts to run? I want ideally to find a way to load without scripts running...
In VBA I can specify the number of times to perform a SendKeys operation with syntax such as Application.SendKeys "{TAB 2}". I can perform the SendKeys in a loop but...