Implementing WebKit with C #

I implemented webKit in a C # application that I use and it works fine except for one problem. Let me tell you why I use it.

This is the program I created that will run several tests for multiple client accounts, and downloads each test into its own dynamically created browser controls, etc. However, the problem I am facing is that some tests use Iframes, which pass information between the parent and child pages. These IFrames run several ajax commands that indicate that they are loading, but do not complete any scripts that need to be executed. Is there something I need to change in how I added WebKit to my application or someone else who had similar problems? These tests work in chrome and safari, so I know that webkit can do this, but for some reason it doesn't do it for me.

Thanks for the help!

+3
source share

Source: https://habr.com/ru/post/1765869/


All Articles