SimpleBrowserDotNet / SimpleBrowser

A flexible and intuitive web browser engine designed for automation tasks. Built on .NET Standard 2.1.
Other
362 stars 105 forks source link

Not all anchor target values are supported #233

Closed kevingy closed 5 years ago

kevingy commented 5 years ago

SImpleBrowser currently supports _self and _blank anchor targets. (_top is defined, but isn't used. It really doesn't make sense in the SimpleBrowser context.)

_top should be removed. _parent and framename should be implemented.

See:

kevingy commented 5 years ago

Looking at the code more closely framename is already supported.

kevingy commented 5 years ago

It's a good thing I started looking at this. Apparently, SimpleBrowser has never supported frames. It supported iframes. (Interestingly enough, it would appear that whoever implemented iframes didn't know that there was a difference between a frame and an iframe.)