Searching for keywords inside innertext and clicking keywords to advance to next URL

boswelljw

New Member
Joined
Sep 18, 2013
Messages
8
Hello
There are 2 options to see the details of a server via a link that I can't share (Internal work).. They are Read (eyeglass) and Modify (pencil)
I want to write vba code to click on the Read button
I'm pasting the Inspect Element text from the Read portion below...
How can vba be coded to select that Read button based on the Inspect Element data?

<A *******="javascript:do_read('System','101297127')" title=Read href="#" BORDER="0"><IMG style="VERTICAL-ALIGN: middle" border=0 src="/pls/eslweb/icones/page_white_magnify.png"></A>

-- removed inline image ---




-- removed inline image ---
 
Last edited:

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
<title></title>
<style>
A {
text-decoration: none;
font-family: Arial;
}
A:link {
color: blue;
}
BODY {
background: #ffffff;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
font-family: Arial;
}
HTML {
background: #ffffff;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
font-family: Arial;
}
</style>





<title></title>
<style>
A {
text-decoration: none;
font-family: Arial;
}
A:link {
color: blue;
}
BODY {
background: #ffffff;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
font-family: Arial;
}
HTML {
background: #ffffff;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
font-family: Arial;
}
</style>



















<tbody> <form method="post" name="search_list" action="" target=""></form>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>
















<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,977
Members
449,200
Latest member
Jamil ahmed

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