I'm new to selenium, & not familiar with its syntax.
I'm trying to figure out how to send Control A & save all the selected text to a file.
If someone could post some examples of sending Control A & saving all the selected text to a basic text file, it'd save me huge amounts of time.
I've managed to get selenium working, but cant figure out the syntax as its different from Vba ...
Thanks.,
Public Sub scrapeCIL()
Dim bot As New WebDriver, posts As WebElements, post As WebElement, i As Integer, mysheet As Worksheet, keys As Selenium.keys
bot.Start "chrome", "https://www.binance.com/en/trade/BTC_USDT"
bot.Get "/"
bot.Quit
End Sub