Git Product home page Git Product logo

Comments (4)

DrMarcII avatar DrMarcII commented on July 27, 2024

How Selenium handles Firefox profiles is exceedingly ugly, and falls well into the category of things I don't want to implement. It is also difficult to implement in Dart as it requires zip'ing a directory of files and there isn't a Dart zip library that I know of.

That said, if you wanted to create a separate library for encoding a Firefox profile that calls out to command-line zip, I would not be opposed to adding it the support directory. The basic idea would be to create a directory on disk that conforms to whatever a Firefox profile is supposed to look like (this will require significant reverse-engineering of the code for one of the Selenium clients). Then zip that directory with command-line zip, read in the resulting zip file and send it in the appropriate field of the capabilities as a BASE64-encoded string.

from webdriver.dart.

zoechi avatar zoechi commented on July 27, 2024

Thanks, that explains a lot! I thought it only needs to be added to desired as JSON and passed to webdriver as such. Now I'm already less confused about the Java code. There are zip libraries available for Dart (with some limitations). I'll have a look.

from webdriver.dart.

zoechi avatar zoechi commented on July 27, 2024

Now that I read your last message again, in the end it's still just sending data in a field of desired, as I assumed, right? Just getting the right data in the required format is the hard work.

from webdriver.dart.

zoechi avatar zoechi commented on July 27, 2024

I got it working \o/

Summary for others who might also need it:
I created a zip of a profile directory manually and passed its content base64-encoded to desired:

import 'package:crypto/crypto.dart';
...
var firefoxProfile = CryptoUtils.bytesToBase64(
    new io.File('/home/myuser/.mozilla/firefox/webdriver_profile.zip').readAsBytesSync());
var driver = createDriver(uri: uri, 
    desired: {'browserName': Browser.firefox, 'firefox_profile': firefoxProfile});

The zip must only contain the files and subdirectories of the profile directory but not the profile directory itself (no root directory in the zip).
The zip needs to contain at least the file prefs.js it seems.
I got the desired Firefox behavior by just adding the prefs.js (auto generated when Firefox is started with a new profile) and my custom settings in user.js and no further files. Passing the whole set of files generated in the Firefox profile directory with my user.js worked as well.

Thanks a lot for your help!

Maybe I'll try to create something more convenient and reach out to you about integrating it into this project.

from webdriver.dart.

Related Issues (20)

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.