GithubHelp home page GithubHelp logo

cefide's Introduction

CefIDE

Convenient IDE for creating scripts (internet bots, parsers) to use then in your C# programs with CefPreter. This is the way to quickly and easily create bots on C#.

Also uyo can use CefIDE with sctipt as a full bot

Basic Information

There are 4 tabs on main window: Code(your script), Browser, Stack(CefPreter variables), Log. All tabs are selective and with variable sizes

CefIDE uses CefPreter - an interpreter for its own scripting language.

CefPreter constructed as WPF component and has a built-in browser, in the future also a low-level library for sending http requests. For working with page data it uses XPath

Main advantage of CefPreter - extensibility. It's very easy to create own functions: just make a class like "ChangeElementTextFunction", inherit it from Function (CefPreter.Function), compile, save as "Function.dll" in main folder of CefIDE.

Currently realized functions: Print, AString, ANumber, ToStr, ToNumber, IsGreater, IsLess, AreEqual, Navigate, Click, Enter, GoBack, GoForward, Reload, Wait, WaitForElement, If, While, InnerHTML, CLBCK, Beep

Example

The bot navigates to the binary option and starts parsing the percentage of people means the rate will rise and prints it. If the percentage is greater than 70, it makes a sound and prints the message "PERCENT GREATER THAN 70!!!".That is, it helps at the right time (depending on your conditions) to buy / sell shares.

GIF:

Code:

Begin
ANumber interval 2000;

Print Navigate 'https://binomo.com/ru/trading';
WaitForElement '//div[@class="trading-data m-unit-bet-opinions-most"]/div/span[1]';

While 1;
Begin
AString percent InnerHTML '//div[@class="trading-data m-unit-bet-opinions-most"]/div/span[1]';

If IsGreater ToNumber percent 70;
Begin
Print 'PERCENT GREATER THAN 70!!!';
Beep;
End

Print percent;
Wait interval;
End
End

cefide's People

Contributors

evkator avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.