CaptainBeardsEyesBeard Posted February 5, 2020 Posted February 5, 2020 Hi How would I go about clicking the following HTML with the Chrome udf driver? <div _ngcontent-qou-c21="" class="search-button"><mat-icon _ngcontent-qou-c21="" class="mat-icon notranslate material-icons mat-icon-no-color" role="img" aria-hidden="true">search</mat-icon></div>
Davidowicza Posted February 5, 2020 Posted February 5, 2020 I find it the easiest to click by Xpath. In Chrome you should be able to right click that div (in developer tools) and copy Xpath. Then it is as easy as: $sElement = _WD_FindElement($sSession, $_WD_LOCATOR_ByXPath, "XPATH HERE") _WD_ElementAction($sSession, $sElement, 'click')
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now