Access element with same name within a class

shirazx3

New Member
Joined
Jul 7, 2022
Messages
23
Office Version
  1. 2021
Platform
  1. Web
As depicted in the picture below, I want to access the data within the red box. The main class has 5 "row" elements enclosed within it. How can I display those values on in an excel cell using Selenium Chromedriver.
1657533619307.png
 
I increased the wait time to 10 seconds and it worked. The login was taking time so went with ch.wait 10000.

Thanks for the help. I will be posting a new thread regarding counting (frequency) a specific text in different rows (same column) of a web table.
 
Upvote 0

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
You migth replace the ch.wait 10000 with this block:
VBA Code:
'Wait login to complete:
For I = 1 To 20
    Set A = ch.FindElementsByClass("input-form-column")
    ch.Wait 500
    If A.Count > 0 Then Exit For
    Set A = Nothing
    ch.Wait 500
Next I
If I > 20 Then
    MsgBox ("Login failed")
    Exit Sub
End If
Debug.Print "Login complete", A.Count, I
This will wait in steps of 1 sec, for 20 seconds maximum
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,085
Members
449,206
Latest member
ralemanygarcia

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top