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

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
<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,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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